| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*  performance.h                                                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /*                         This file is part of:                          */ | 
					
						
							|  |  |  | /*                             GODOT ENGINE                               */ | 
					
						
							|  |  |  | /*                        https://godotengine.org                         */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							|  |  |  | /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */ | 
					
						
							|  |  |  | /* Copyright (c) 2007-2014 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.                 */ | 
					
						
							|  |  |  | /**************************************************************************/ | 
					
						
							| 
									
										
										
										
											2018-01-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef PERFORMANCE_H
 | 
					
						
							|  |  |  | #define PERFORMANCE_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/object/class_db.h"
 | 
					
						
							| 
									
										
										
										
											2022-05-08 10:09:19 +02:00
										 |  |  | #include "core/templates/hash_map.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define PERF_WARN_OFFLINE_FUNCTION
 | 
					
						
							|  |  |  | #define PERF_WARN_PROCESS_SYNC
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-05 20:35:08 +02:00
										 |  |  | template <typename T> | 
					
						
							|  |  |  | class TypedArray; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | class Performance : public Object { | 
					
						
							| 
									
										
										
										
											2017-01-02 23:03:46 -03:00
										 |  |  | 	GDCLASS(Performance, Object); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	static Performance *singleton; | 
					
						
							|  |  |  | 	static void _bind_methods(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-21 01:23:35 -04:00
										 |  |  | 	int _get_node_count() const; | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:21 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-21 01:23:35 -04:00
										 |  |  | 	double _process_time; | 
					
						
							|  |  |  | 	double _physics_process_time; | 
					
						
							| 
									
										
										
										
											2022-12-30 05:19:15 +01:00
										 |  |  | 	double _navigation_process_time; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-04 18:48:57 +05:30
										 |  |  | 	class MonitorCall { | 
					
						
							|  |  |  | 		Callable _callable; | 
					
						
							|  |  |  | 		Vector<Variant> _arguments; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	public: | 
					
						
							|  |  |  | 		MonitorCall(Callable p_callable, Vector<Variant> p_arguments); | 
					
						
							|  |  |  | 		MonitorCall(); | 
					
						
							|  |  |  | 		Variant call(bool &r_error, String &r_error_message); | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-05-08 10:09:19 +02:00
										 |  |  | 	HashMap<StringName, MonitorCall> _monitor_map; | 
					
						
							| 
									
										
										
										
											2020-06-04 18:48:57 +05:30
										 |  |  | 	uint64_t _monitor_modification_time; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	enum Monitor { | 
					
						
							|  |  |  | 		TIME_FPS, | 
					
						
							|  |  |  | 		TIME_PROCESS, | 
					
						
							| 
									
										
										
										
											2017-09-30 16:19:07 +02:00
										 |  |  | 		TIME_PHYSICS_PROCESS, | 
					
						
							| 
									
										
										
										
											2022-12-30 05:19:15 +01:00
										 |  |  | 		TIME_NAVIGATION_PROCESS, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		MEMORY_STATIC, | 
					
						
							|  |  |  | 		MEMORY_STATIC_MAX, | 
					
						
							|  |  |  | 		MEMORY_MESSAGE_BUFFER_MAX, | 
					
						
							|  |  |  | 		OBJECT_COUNT, | 
					
						
							|  |  |  | 		OBJECT_RESOURCE_COUNT, | 
					
						
							|  |  |  | 		OBJECT_NODE_COUNT, | 
					
						
							| 
									
										
										
										
											2019-04-17 22:46:21 +02:00
										 |  |  | 		OBJECT_ORPHAN_NODE_COUNT, | 
					
						
							| 
									
										
										
										
											2021-07-02 20:14:19 -03:00
										 |  |  | 		RENDER_TOTAL_OBJECTS_IN_FRAME, | 
					
						
							|  |  |  | 		RENDER_TOTAL_PRIMITIVES_IN_FRAME, | 
					
						
							|  |  |  | 		RENDER_TOTAL_DRAW_CALLS_IN_FRAME, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RENDER_VIDEO_MEM_USED, | 
					
						
							|  |  |  | 		RENDER_TEXTURE_MEM_USED, | 
					
						
							| 
									
										
										
										
											2021-07-02 20:14:19 -03:00
										 |  |  | 		RENDER_BUFFER_MEM_USED, | 
					
						
							| 
									
										
										
										
											2014-09-02 23:13:40 -03:00
										 |  |  | 		PHYSICS_2D_ACTIVE_OBJECTS, | 
					
						
							|  |  |  | 		PHYSICS_2D_COLLISION_PAIRS, | 
					
						
							|  |  |  | 		PHYSICS_2D_ISLAND_COUNT, | 
					
						
							|  |  |  | 		PHYSICS_3D_ACTIVE_OBJECTS, | 
					
						
							|  |  |  | 		PHYSICS_3D_COLLISION_PAIRS, | 
					
						
							|  |  |  | 		PHYSICS_3D_ISLAND_COUNT, | 
					
						
							| 
									
										
										
										
											2018-07-16 22:43:47 -03:00
										 |  |  | 		AUDIO_OUTPUT_LATENCY, | 
					
						
							| 
									
										
										
										
											2022-12-30 05:19:15 +01:00
										 |  |  | 		NAVIGATION_ACTIVE_MAPS, | 
					
						
							|  |  |  | 		NAVIGATION_REGION_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_AGENT_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_LINK_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_POLYGON_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_EDGE_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_EDGE_MERGE_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_EDGE_CONNECTION_COUNT, | 
					
						
							|  |  |  | 		NAVIGATION_EDGE_FREE_COUNT, | 
					
						
							| 
									
										
										
										
											2024-06-25 04:50:43 +02:00
										 |  |  | 		NAVIGATION_OBSTACLE_COUNT, | 
					
						
							| 
									
										
										
										
											2024-03-15 14:13:31 -03:00
										 |  |  | 		PIPELINE_COMPILATIONS_CANVAS, | 
					
						
							|  |  |  | 		PIPELINE_COMPILATIONS_MESH, | 
					
						
							|  |  |  | 		PIPELINE_COMPILATIONS_SURFACE, | 
					
						
							|  |  |  | 		PIPELINE_COMPILATIONS_DRAW, | 
					
						
							|  |  |  | 		PIPELINE_COMPILATIONS_SPECIALIZATION, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		MONITOR_MAX | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-23 01:59:04 -05:00
										 |  |  | 	enum MonitorType { | 
					
						
							|  |  |  | 		MONITOR_TYPE_QUANTITY, | 
					
						
							|  |  |  | 		MONITOR_TYPE_MEMORY, | 
					
						
							|  |  |  | 		MONITOR_TYPE_TIME | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-21 01:23:35 -04:00
										 |  |  | 	double get_monitor(Monitor p_monitor) const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String get_monitor_name(Monitor p_monitor) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-23 01:59:04 -05:00
										 |  |  | 	MonitorType get_monitor_type(Monitor p_monitor) const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2021-05-21 01:23:35 -04:00
										 |  |  | 	void set_process_time(double p_pt); | 
					
						
							|  |  |  | 	void set_physics_process_time(double p_pt); | 
					
						
							| 
									
										
										
										
											2022-12-30 05:19:15 +01:00
										 |  |  | 	void set_navigation_process_time(double p_pt); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-06-04 18:48:57 +05:30
										 |  |  | 	void add_custom_monitor(const StringName &p_id, const Callable &p_callable, const Vector<Variant> &p_args); | 
					
						
							|  |  |  | 	void remove_custom_monitor(const StringName &p_id); | 
					
						
							|  |  |  | 	bool has_custom_monitor(const StringName &p_id); | 
					
						
							|  |  |  | 	Variant get_custom_monitor(const StringName &p_id); | 
					
						
							| 
									
										
										
										
											2022-08-05 20:35:08 +02:00
										 |  |  | 	TypedArray<StringName> get_custom_monitor_names(); | 
					
						
							| 
									
										
										
										
											2020-06-04 18:48:57 +05:30
										 |  |  | 
 | 
					
						
							|  |  |  | 	uint64_t get_monitor_modification_time(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	static Performance *get_singleton() { return singleton; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Performance(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | VARIANT_ENUM_CAST(Performance::Monitor); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif // PERFORMANCE_H
 |