2017-01-13 18:25:43 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
|
/* engine.h */
|
|
|
|
|
/*************************************************************************/
|
|
|
|
|
/* This file is part of: */
|
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2017-01-13 18:25:43 +01:00
|
|
|
/*************************************************************************/
|
2022-01-03 21:27:34 +01:00
|
|
|
/* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
|
|
|
|
|
/* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
|
2017-01-13 18:25:43 +01:00
|
|
|
/* */
|
|
|
|
|
/* 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
|
|
|
|
2017-01-13 12:51:14 -03:00
|
|
|
#ifndef ENGINE_H
|
|
|
|
|
#define ENGINE_H
|
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/main_loop.h"
|
2020-11-07 19:33:38 -03:00
|
|
|
#include "core/string/ustring.h"
|
|
|
|
|
#include "core/templates/list.h"
|
|
|
|
|
#include "core/templates/vector.h"
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2022-08-05 03:41:48 +02:00
|
|
|
template <typename T>
|
|
|
|
|
class TypedArray;
|
|
|
|
|
|
2017-01-13 12:51:14 -03:00
|
|
|
class Engine {
|
2017-11-13 21:46:57 +01:00
|
|
|
public:
|
|
|
|
|
struct Singleton {
|
|
|
|
|
StringName name;
|
2022-04-04 15:06:57 +02:00
|
|
|
Object *ptr = nullptr;
|
2021-06-19 12:58:49 -03:00
|
|
|
StringName class_name; //used for binding generation hinting
|
2021-08-24 19:03:10 -03:00
|
|
|
bool user_created = false;
|
2021-06-19 12:58:49 -03:00
|
|
|
Singleton(const StringName &p_name = StringName(), Object *p_ptr = nullptr, const StringName &p_class_name = StringName());
|
2017-11-13 21:46:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
private:
|
2017-03-05 16:44:50 +01:00
|
|
|
friend class Main;
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2020-05-12 17:01:17 +02:00
|
|
|
uint64_t frames_drawn = 0;
|
|
|
|
|
uint32_t _frame_delay = 0;
|
|
|
|
|
uint64_t _frame_ticks = 0;
|
2021-02-01 21:16:37 -05:00
|
|
|
double _process_step = 0;
|
2020-05-12 17:01:17 +02:00
|
|
|
|
|
|
|
|
int ips = 60;
|
2021-02-01 21:16:37 -05:00
|
|
|
double physics_jitter_fix = 0.5;
|
|
|
|
|
double _fps = 1;
|
2020-05-12 17:01:17 +02:00
|
|
|
int _target_fps = 0;
|
2021-02-01 21:16:37 -05:00
|
|
|
double _time_scale = 1.0;
|
2020-05-12 17:01:17 +02:00
|
|
|
uint64_t _physics_frames = 0;
|
2021-02-01 21:16:37 -05:00
|
|
|
double _physics_interpolation_fraction = 0.0f;
|
2020-05-12 17:01:17 +02:00
|
|
|
bool abort_on_gpu_errors = false;
|
2020-10-27 16:00:15 +01:00
|
|
|
bool use_validation_layers = false;
|
2021-11-15 14:55:41 +02:00
|
|
|
int32_t gpu_idx = -1;
|
2020-05-12 17:01:17 +02:00
|
|
|
|
2020-12-22 09:50:29 +00:00
|
|
|
uint64_t _process_frames = 0;
|
2020-05-12 17:01:17 +02:00
|
|
|
bool _in_physics = false;
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2017-11-13 21:46:57 +01:00
|
|
|
List<Singleton> singletons;
|
2022-05-13 15:04:37 +02:00
|
|
|
HashMap<StringName, Object *> singleton_ptrs;
|
2017-11-13 21:46:57 +01:00
|
|
|
|
2020-05-12 17:01:17 +02:00
|
|
|
bool editor_hint = false;
|
2022-02-03 01:21:52 +01:00
|
|
|
bool project_manager_hint = false;
|
2017-08-13 16:21:45 +02:00
|
|
|
|
2017-01-13 12:51:14 -03:00
|
|
|
static Engine *singleton;
|
|
|
|
|
|
2022-06-26 01:38:20 +02:00
|
|
|
String write_movie_path;
|
2021-05-24 21:25:11 -03:00
|
|
|
String shader_cache_path;
|
|
|
|
|
|
2022-08-19 14:21:43 +02:00
|
|
|
Dictionary startup_benchmark_json;
|
|
|
|
|
String startup_benchmark_section;
|
|
|
|
|
uint64_t startup_benchmark_from = 0;
|
|
|
|
|
uint64_t startup_benchmark_total_from = 0;
|
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
public:
|
2017-01-13 12:51:14 -03:00
|
|
|
static Engine *get_singleton();
|
|
|
|
|
|
2021-08-11 02:35:16 +02:00
|
|
|
virtual void set_physics_ticks_per_second(int p_ips);
|
|
|
|
|
virtual int get_physics_ticks_per_second() const;
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2021-02-01 21:16:37 -05:00
|
|
|
void set_physics_jitter_fix(double p_threshold);
|
|
|
|
|
double get_physics_jitter_fix() const;
|
2018-02-11 00:03:31 +01:00
|
|
|
|
2017-01-13 12:51:14 -03:00
|
|
|
virtual void set_target_fps(int p_fps);
|
2020-04-10 06:48:22 +01:00
|
|
|
virtual int get_target_fps() const;
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2021-02-01 21:16:37 -05:00
|
|
|
virtual double get_frames_per_second() const { return _fps; }
|
2017-01-13 12:51:14 -03:00
|
|
|
|
|
|
|
|
uint64_t get_frames_drawn();
|
|
|
|
|
|
2017-09-30 16:19:07 +02:00
|
|
|
uint64_t get_physics_frames() const { return _physics_frames; }
|
2020-12-22 09:50:29 +00:00
|
|
|
uint64_t get_process_frames() const { return _process_frames; }
|
2017-09-30 16:19:07 +02:00
|
|
|
bool is_in_physics_frame() const { return _in_physics; }
|
2020-12-22 09:50:29 +00:00
|
|
|
uint64_t get_frame_ticks() const { return _frame_ticks; }
|
2021-02-01 21:16:37 -05:00
|
|
|
double get_process_step() const { return _process_step; }
|
|
|
|
|
double get_physics_interpolation_fraction() const { return _physics_interpolation_fraction; }
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2021-02-01 21:16:37 -05:00
|
|
|
void set_time_scale(double p_scale);
|
|
|
|
|
double get_time_scale() const;
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2021-05-01 23:09:48 +02:00
|
|
|
void set_print_error_messages(bool p_enabled);
|
|
|
|
|
bool is_printing_error_messages() const;
|
|
|
|
|
|
2017-01-13 12:51:14 -03:00
|
|
|
void set_frame_delay(uint32_t p_msec);
|
|
|
|
|
uint32_t get_frame_delay() const;
|
|
|
|
|
|
2017-11-13 21:46:57 +01:00
|
|
|
void add_singleton(const Singleton &p_singleton);
|
|
|
|
|
void get_singletons(List<Singleton> *p_singletons);
|
2021-08-24 19:03:10 -03:00
|
|
|
bool has_singleton(const StringName &p_name) const;
|
|
|
|
|
Object *get_singleton_object(const StringName &p_name) const;
|
|
|
|
|
void remove_singleton(const StringName &p_name);
|
|
|
|
|
bool is_singleton_user_created(const StringName &p_name) const;
|
2017-11-13 21:46:57 +01:00
|
|
|
|
2017-08-13 16:21:45 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
|
_FORCE_INLINE_ void set_editor_hint(bool p_enabled) { editor_hint = p_enabled; }
|
|
|
|
|
_FORCE_INLINE_ bool is_editor_hint() const { return editor_hint; }
|
2022-02-03 01:21:52 +01:00
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void set_project_manager_hint(bool p_enabled) { project_manager_hint = p_enabled; }
|
|
|
|
|
_FORCE_INLINE_ bool is_project_manager_hint() const { return project_manager_hint; }
|
2017-08-13 16:21:45 +02:00
|
|
|
#else
|
|
|
|
|
_FORCE_INLINE_ void set_editor_hint(bool p_enabled) {}
|
|
|
|
|
_FORCE_INLINE_ bool is_editor_hint() const { return false; }
|
2022-02-03 01:21:52 +01:00
|
|
|
|
|
|
|
|
_FORCE_INLINE_ void set_project_manager_hint(bool p_enabled) {}
|
|
|
|
|
_FORCE_INLINE_ bool is_project_manager_hint() const { return false; }
|
2017-08-13 16:21:45 +02:00
|
|
|
#endif
|
|
|
|
|
|
2017-01-13 18:25:43 +01:00
|
|
|
Dictionary get_version_info() const;
|
2018-05-16 05:54:22 +01:00
|
|
|
Dictionary get_author_info() const;
|
2022-08-05 03:41:48 +02:00
|
|
|
TypedArray<Dictionary> get_copyright_info() const;
|
2018-05-16 05:54:22 +01:00
|
|
|
Dictionary get_donor_info() const;
|
|
|
|
|
Dictionary get_license_info() const;
|
|
|
|
|
String get_license_text() const;
|
2017-01-13 12:51:14 -03:00
|
|
|
|
2022-06-26 01:38:20 +02:00
|
|
|
void set_write_movie_path(const String &p_path);
|
|
|
|
|
String get_write_movie_path() const;
|
|
|
|
|
|
2022-07-20 19:05:49 +02:00
|
|
|
String get_architecture_name() const;
|
|
|
|
|
|
2021-05-24 21:25:11 -03:00
|
|
|
void set_shader_cache_path(const String &p_path);
|
|
|
|
|
String get_shader_cache_path() const;
|
|
|
|
|
|
2019-10-05 10:27:43 -03:00
|
|
|
bool is_abort_on_gpu_errors_enabled() const;
|
2020-10-27 16:00:15 +01:00
|
|
|
bool is_validation_layers_enabled() const;
|
2021-11-15 14:55:41 +02:00
|
|
|
int32_t get_gpu_index() const;
|
2019-10-05 10:27:43 -03:00
|
|
|
|
2022-08-19 14:21:43 +02:00
|
|
|
void startup_begin();
|
|
|
|
|
void startup_benchmark_begin_measure(const String &p_what);
|
|
|
|
|
void startup_benchmark_end_measure();
|
|
|
|
|
void startup_dump(const String &p_to_file);
|
|
|
|
|
|
2017-01-13 12:51:14 -03:00
|
|
|
Engine();
|
2018-10-02 12:07:44 +02:00
|
|
|
virtual ~Engine() {}
|
2017-01-13 12:51:14 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // ENGINE_H
|