2017-01-13 17:25:43 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* engine.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2017-01-13 17:25:43 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2017-04-07 22:11:42 +00:00
|
|
|
/* Copyright (c) 2014-2017 Godot Engine contributors (cf. AUTHORS.md) */
|
2017-01-13 17:25:43 +00: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. */
|
|
|
|
/*************************************************************************/
|
2017-01-13 15:51:14 +00:00
|
|
|
#include "engine.h"
|
2017-01-16 07:04:19 +00:00
|
|
|
|
2017-01-13 15:51:14 +00:00
|
|
|
#include "version.h"
|
2017-07-10 08:47:38 +00:00
|
|
|
#include "version_hash.gen.h"
|
2017-01-13 15:51:14 +00:00
|
|
|
|
|
|
|
void Engine::set_iterations_per_second(int p_ips) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ips = p_ips;
|
2017-01-13 15:51:14 +00:00
|
|
|
}
|
|
|
|
int Engine::get_iterations_per_second() const {
|
|
|
|
|
|
|
|
return ips;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Engine::set_target_fps(int p_fps) {
|
2017-03-05 15:44:50 +00:00
|
|
|
_target_fps = p_fps > 0 ? p_fps : 0;
|
2017-01-13 15:51:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float Engine::get_target_fps() const {
|
|
|
|
return _target_fps;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t Engine::get_frames_drawn() {
|
|
|
|
|
|
|
|
return frames_drawn;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Engine::set_frame_delay(uint32_t p_msec) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_frame_delay = p_msec;
|
2017-01-13 15:51:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t Engine::get_frame_delay() const {
|
|
|
|
|
|
|
|
return _frame_delay;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Engine::set_time_scale(float p_scale) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
_time_scale = p_scale;
|
2017-01-13 15:51:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
float Engine::get_time_scale() const {
|
|
|
|
|
|
|
|
return _time_scale;
|
|
|
|
}
|
|
|
|
|
2017-01-13 17:25:43 +00:00
|
|
|
Dictionary Engine::get_version_info() const {
|
2017-01-13 15:51:14 +00:00
|
|
|
|
2017-01-13 17:25:43 +00:00
|
|
|
Dictionary dict;
|
|
|
|
dict["major"] = VERSION_MAJOR;
|
|
|
|
dict["minor"] = VERSION_MINOR;
|
2017-03-05 15:44:50 +00:00
|
|
|
#ifdef VERSION_PATCH
|
2017-01-13 17:25:43 +00:00
|
|
|
dict["patch"] = VERSION_PATCH;
|
2017-03-05 15:44:50 +00:00
|
|
|
#else
|
2017-01-13 17:25:43 +00:00
|
|
|
dict["patch"] = 0;
|
2017-03-05 15:44:50 +00:00
|
|
|
#endif
|
2017-11-19 20:18:01 +00:00
|
|
|
dict["status"] = VERSION_STATUS;
|
|
|
|
dict["revision"] = VERSION_REVISION;
|
2017-01-13 17:25:43 +00:00
|
|
|
dict["year"] = VERSION_YEAR;
|
2017-01-13 15:51:14 +00:00
|
|
|
|
2017-11-19 20:18:01 +00:00
|
|
|
String hash = VERSION_HASH;
|
2017-07-10 08:47:38 +00:00
|
|
|
dict["hash"] = hash.length() == 0 ? String("unknown") : hash;
|
|
|
|
|
2017-01-13 17:25:43 +00:00
|
|
|
String stringver = String(dict["major"]) + "." + String(dict["minor"]);
|
|
|
|
if ((int)dict["patch"] != 0)
|
|
|
|
stringver += "." + String(dict["patch"]);
|
|
|
|
stringver += "-" + String(dict["status"]) + " (" + String(dict["revision"]) + ")";
|
|
|
|
dict["string"] = stringver;
|
2017-01-13 15:51:14 +00:00
|
|
|
|
2017-01-13 17:25:43 +00:00
|
|
|
return dict;
|
2017-01-13 15:51:14 +00:00
|
|
|
}
|
|
|
|
|
2017-11-13 20:46:57 +00:00
|
|
|
void Engine::add_singleton(const Singleton &p_singleton) {
|
|
|
|
|
|
|
|
singletons.push_back(p_singleton);
|
|
|
|
singleton_ptrs[p_singleton.name] = p_singleton.ptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
Object *Engine::get_singleton_object(const String &p_name) const {
|
|
|
|
|
|
|
|
const Map<StringName, Object *>::Element *E = singleton_ptrs.find(p_name);
|
2017-11-14 13:52:24 +00:00
|
|
|
ERR_EXPLAIN("Failed to retrieve non-existent singleton '" + p_name + "'");
|
|
|
|
ERR_FAIL_COND_V(!E, NULL);
|
|
|
|
return E->get();
|
2017-11-13 20:46:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
bool Engine::has_singleton(const String &p_name) const {
|
|
|
|
|
2017-11-14 13:52:24 +00:00
|
|
|
return singleton_ptrs.has(p_name);
|
2017-11-13 20:46:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void Engine::get_singletons(List<Singleton> *p_singletons) {
|
|
|
|
|
|
|
|
for (List<Singleton>::Element *E = singletons.front(); E; E = E->next())
|
|
|
|
p_singletons->push_back(E->get());
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Engine *Engine::singleton = NULL;
|
2017-01-13 15:51:14 +00:00
|
|
|
|
|
|
|
Engine *Engine::get_singleton() {
|
|
|
|
return singleton;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Engine::Engine() {
|
|
|
|
|
|
|
|
singleton = this;
|
|
|
|
frames_drawn = 0;
|
|
|
|
ips = 60;
|
|
|
|
_frame_delay = 0;
|
|
|
|
_fps = 1;
|
|
|
|
_target_fps = 0;
|
|
|
|
_time_scale = 1.0;
|
|
|
|
_pixel_snap = false;
|
2017-09-30 14:19:07 +00:00
|
|
|
_physics_frames = 0;
|
2017-03-05 15:44:50 +00:00
|
|
|
_idle_frames = 0;
|
2017-09-30 14:19:07 +00:00
|
|
|
_in_physics = false;
|
2017-07-15 04:23:10 +00:00
|
|
|
_frame_ticks = 0;
|
|
|
|
_frame_step = 0;
|
2017-08-13 14:21:45 +00:00
|
|
|
editor_hint = false;
|
2017-01-13 15:51:14 +00:00
|
|
|
}
|