2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* world.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#ifndef WORLD_H
|
|
|
|
#define WORLD_H
|
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/resource.h"
|
2017-03-05 15:44:50 +00:00
|
|
|
#include "scene/resources/environment.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "servers/physics_server.h"
|
|
|
|
#include "servers/visual_server.h"
|
|
|
|
|
|
|
|
class Camera;
|
|
|
|
class VisibilityNotifier;
|
2018-10-01 14:46:50 +00:00
|
|
|
struct SpatialIndexer;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class World : public Resource {
|
2017-01-03 02:03:46 +00:00
|
|
|
GDCLASS(World, Resource);
|
2017-06-15 22:44:11 +00:00
|
|
|
RES_BASE_EXTENSION("world");
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
private:
|
|
|
|
RID space;
|
|
|
|
RID scenario;
|
2017-03-05 15:44:50 +00:00
|
|
|
SpatialIndexer *indexer;
|
2014-02-10 01:10:30 +00:00
|
|
|
Ref<Environment> environment;
|
2017-05-29 00:46:48 +00:00
|
|
|
Ref<Environment> fallback_environment;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
friend class Camera;
|
|
|
|
friend class VisibilityNotifier;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void _register_camera(Camera *p_camera);
|
|
|
|
void _update_camera(Camera *p_camera);
|
|
|
|
void _remove_camera(Camera *p_camera);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-11-17 02:09:00 +00:00
|
|
|
void _register_notifier(VisibilityNotifier *p_notifier, const AABB &p_rect);
|
|
|
|
void _update_notifier(VisibilityNotifier *p_notifier, const AABB &p_rect);
|
2017-03-05 15:44:50 +00:00
|
|
|
void _remove_notifier(VisibilityNotifier *p_notifier);
|
|
|
|
friend class Viewport;
|
2014-02-10 01:10:30 +00:00
|
|
|
void _update(uint64_t p_frame);
|
|
|
|
|
|
|
|
public:
|
|
|
|
RID get_space() const;
|
|
|
|
RID get_scenario() const;
|
2017-05-29 00:46:48 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_environment(const Ref<Environment> &p_environment);
|
2014-02-10 01:10:30 +00:00
|
|
|
Ref<Environment> get_environment() const;
|
|
|
|
|
2017-05-29 00:46:48 +00:00
|
|
|
void set_fallback_environment(const Ref<Environment> &p_environment);
|
|
|
|
Ref<Environment> get_fallback_environment() const;
|
|
|
|
|
2017-07-15 04:23:10 +00:00
|
|
|
void get_camera_list(List<Camera *> *r_cameras);
|
|
|
|
|
2015-03-22 12:40:26 +00:00
|
|
|
PhysicsDirectSpaceState *get_direct_space_state();
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
World();
|
|
|
|
~World();
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // WORLD_H
|