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.
|
|
|
|
|
|
|
|
/* portal.h */
|
|
|
|
#ifndef LPORTAL_H
|
|
|
|
#define LPORTAL_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author lawnjelly <lawnjelly@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "scene/3d/spatial.h"
|
2019-09-12 20:53:24 +02:00
|
|
|
#include "lvector.h"
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
class LRoom;
|
2019-09-23 12:14:41 +02:00
|
|
|
class LRoomManager;
|
2019-10-09 12:33:19 +02:00
|
|
|
class Light;
|
2019-09-11 09:09:36 +02:00
|
|
|
|
2019-09-26 09:53:15 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
class LPortal {
|
|
|
|
public:
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
enum eClipResult
|
|
|
|
{
|
|
|
|
CLIP_OUTSIDE,
|
|
|
|
CLIP_PARTIAL,
|
|
|
|
CLIP_INSIDE,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
const String &get_name() const {return m_szName;}
|
2019-09-11 09:09:36 +02:00
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
// linked room, this is the number not godot ID
|
|
|
|
int m_iRoomNum;
|
|
|
|
String m_szName;
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
LPortal::eClipResult ClipWithPlane(const Plane &p) const;
|
2019-09-23 12:14:41 +02:00
|
|
|
void AddPlanes(LRoomManager &manager, const Vector3 &ptCam, LVector<Plane> &planes) const;
|
2019-10-09 12:33:19 +02:00
|
|
|
|
|
|
|
// reverse direction if we are going back through portals TOWARDS the light rather than away from it
|
|
|
|
// (the planes will need reversing because the portal winding will be opposite)
|
|
|
|
void AddLightPlanes(LRoomManager &manager, const LLight &light, LVector<Plane> &planes, bool bReverse) const;
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
// normal determined by winding order
|
|
|
|
Vector<Vector3> m_ptsWorld;
|
2019-09-15 20:26:18 +02:00
|
|
|
Vector3 m_ptCentre; // world
|
2019-09-11 09:09:36 +02:00
|
|
|
Plane m_Plane;
|
|
|
|
|
2019-09-16 15:23:10 +02:00
|
|
|
// whether this is an autogenerated mirror portal
|
|
|
|
// this is used only on conversion of 2 way portals to prevent recursion .. maybe not needed at runtime?
|
|
|
|
bool m_bMirror;
|
|
|
|
|
2019-09-15 20:26:18 +02:00
|
|
|
// frame counter when last touched .. prevents going backward through portals
|
|
|
|
//unsigned int m_uiFrameTouched_Blocked;
|
|
|
|
|
2019-09-11 09:09:36 +02:00
|
|
|
LPortal();
|
|
|
|
|
|
|
|
void CopyReversedGeometry(const LPortal &source);
|
2019-09-15 16:39:01 +02:00
|
|
|
void CreateGeometry(PoolVector<Vector3> p_vertices, const Transform &trans);
|
2019-09-11 09:09:36 +02:00
|
|
|
void PlaneFromPoints();
|
2019-09-12 12:07:43 +02:00
|
|
|
void SortVertsClockwise();
|
|
|
|
void ReverseWindingOrder();
|
2019-09-15 16:39:01 +02:00
|
|
|
|
|
|
|
// useful funcs
|
2019-12-03 16:50:30 +01:00
|
|
|
static bool NameStartsWith(const Node * pNode, String szSearch);
|
2019-09-12 12:07:43 +02:00
|
|
|
static String FindNameAfter(Node * pNode, String szStart);
|
2019-10-09 12:33:19 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Debug_CheckPlaneValidity(const Plane &p) const;
|
2019-09-11 09:09:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|