2014-02-10 09:10:30 +08:00
|
|
|
/*************************************************************************/
|
|
|
|
/* room.h */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 20:16:55 +08:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 09:10:30 +08:00
|
|
|
/*************************************************************************/
|
2019-01-01 19:53:14 +08:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 09:10:30 +08: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 07:50:27 +08:00
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
#ifndef ROOM_BOUNDS_H
|
|
|
|
#define ROOM_BOUNDS_H
|
|
|
|
|
2018-09-12 00:13:45 +08:00
|
|
|
#include "core/math/bsp_tree.h"
|
|
|
|
#include "core/resource.h"
|
2014-02-10 09:10:30 +08:00
|
|
|
/**
|
|
|
|
@author Juan Linietsky <reduzio@gmail.com>
|
|
|
|
*/
|
2016-10-04 03:33:42 +08:00
|
|
|
|
2017-12-17 22:29:39 +08:00
|
|
|
// FIXME: left for reference but will be removed when portals are reimplemented using Area
|
2017-08-26 11:40:45 +08:00
|
|
|
#if 0
|
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
class RoomBounds : public Resource {
|
|
|
|
|
2017-03-05 23:44:50 +08:00
|
|
|
GDCLASS(RoomBounds, Resource);
|
2014-02-10 09:10:30 +08:00
|
|
|
RES_BASE_EXTENSION("room");
|
2016-03-09 07:00:52 +08:00
|
|
|
|
|
|
|
RID area;
|
2017-01-08 05:25:37 +08:00
|
|
|
PoolVector<Face3> geometry_hint;
|
2014-02-10 09:10:30 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
2016-06-13 00:31:22 +08:00
|
|
|
virtual RID get_rid() const;
|
2014-02-10 09:10:30 +08:00
|
|
|
|
2017-08-12 03:10:05 +08:00
|
|
|
void set_geometry_hint(const PoolVector<Face3> &p_geometry_hint);
|
2017-01-08 05:25:37 +08:00
|
|
|
PoolVector<Face3> get_geometry_hint() const;
|
2016-03-09 07:00:52 +08:00
|
|
|
|
2014-02-10 09:10:30 +08:00
|
|
|
RoomBounds();
|
|
|
|
~RoomBounds();
|
|
|
|
};
|
|
|
|
|
2017-08-26 11:40:45 +08:00
|
|
|
#endif
|
2014-02-10 09:10:30 +08:00
|
|
|
#endif // ROOM_H
|