2019-09-11 09:09:36 +02:00
|
|
|
// Copyright (c) 2019 Lawnjelly
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
/* room.h */
|
|
|
|
#ifndef LROOM_H
|
|
|
|
#define LROOM_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author lawnjelly <lawnjelly@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "scene/3d/spatial.h"
|
|
|
|
|
|
|
|
|
2019-09-12 16:51:33 +02:00
|
|
|
namespace Core {class CoBitField_Dynamic;}
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
class LPortal;
|
|
|
|
class MeshInstance;
|
|
|
|
|
|
|
|
class LCamera
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// all in world space, culling done in world space
|
|
|
|
Vector3 m_ptPos;
|
|
|
|
Vector3 m_ptDir;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class LRoom : public Spatial {
|
|
|
|
GDCLASS(LRoom, Spatial);
|
|
|
|
|
|
|
|
friend class LPortal;
|
2019-09-12 16:51:33 +02:00
|
|
|
friend class LRoomManager;
|
2019-09-11 09:09:36 +02:00
|
|
|
private:
|
|
|
|
// a quick list of object IDs of child portals of this room
|
|
|
|
Vector<ObjectID> m_portal_IDs;
|
|
|
|
|
2019-09-12 16:51:33 +02:00
|
|
|
// in the Room Manager, NOT the godot object ID
|
|
|
|
int m_LocalRoomID;
|
|
|
|
|
2019-09-11 09:09:36 +02:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
|
|
|
|
public:
|
|
|
|
// initial setup, allows importing portals as meshes from modelling program,
|
|
|
|
// which will be auto converted to LPortals with this method
|
|
|
|
void DetectPortalMeshes();
|
|
|
|
// assuming that portals are a child of the room, detect these and make them 2 way
|
|
|
|
void MakePortalsTwoWay();
|
|
|
|
void MakePortalQuickList();
|
|
|
|
|
|
|
|
// main function
|
2019-09-12 16:51:33 +02:00
|
|
|
void DetermineVisibility_Recursive(int depth, const LCamera &cam, const Vector<Plane> &planes, Core::CoBitField_Dynamic &BF_visible, ObjectID portalID_from = 0);
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
// specific
|
|
|
|
public:
|
|
|
|
LRoom();
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
|
|
// void SetupPortal(LPortal * pPortal);
|
|
|
|
void MakeOppositePortal(LPortal * pPortalFrom, LRoom * pRoomTo);
|
|
|
|
void DetectedPortalMesh(MeshInstance * pMeshInstance, String szLinkRoom);
|
2019-09-12 16:51:33 +02:00
|
|
|
static void print(String sz);
|
2019-09-11 09:09:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|