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 20:53:24 +02:00
|
|
|
#include "lvector.h"
|
2019-09-13 20:15:25 +02:00
|
|
|
#include "ldob.h"
|
2019-09-17 15:30:31 +02:00
|
|
|
#include "lbound.h"
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
|
2019-09-13 20:15:25 +02:00
|
|
|
namespace Lawn {class LBitField_Dynamic;}
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
class LPortal;
|
2019-09-12 20:53:24 +02:00
|
|
|
class LRoomManager;
|
2019-09-11 09:09:36 +02:00
|
|
|
class MeshInstance;
|
|
|
|
|
|
|
|
class LCamera
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// all in world space, culling done in world space
|
|
|
|
Vector3 m_ptPos;
|
|
|
|
Vector3 m_ptDir;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
class LRoom
|
|
|
|
{
|
2019-09-11 09:09:36 +02:00
|
|
|
private:
|
|
|
|
|
2019-09-23 12:14:41 +02:00
|
|
|
public:
|
2019-10-09 12:33:19 +02:00
|
|
|
// using flags we can determine which the object is visible to - the camera, or the lights (i.e. shadow caster), or both
|
|
|
|
static const int LAYER_LIGHT_BIT = 18;
|
|
|
|
static const int LAYER_CAMERA_BIT = 19;
|
|
|
|
|
|
|
|
static const int LAYER_MASK_LIGHT = 1 << LAYER_LIGHT_BIT;
|
|
|
|
static const int LAYER_MASK_CAMERA = 1 << LAYER_CAMERA_BIT;
|
2019-09-23 12:14:41 +02:00
|
|
|
|
2019-09-24 19:33:55 +02:00
|
|
|
// static objects are stored in the manager in a contiguous list
|
|
|
|
int m_iFirstSOB;
|
|
|
|
int m_iNumSOBs;
|
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
// dynamic objects
|
2019-09-16 15:23:10 +02:00
|
|
|
LVector<LDob> m_DOBs;
|
2019-09-13 20:15:25 +02:00
|
|
|
|
2019-10-09 12:33:19 +02:00
|
|
|
// local lights affecting this room
|
|
|
|
LVector<int> m_LocalLights;
|
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
// portals are stored in the manager in a contiguous list
|
|
|
|
int m_iFirstPortal;
|
|
|
|
int m_iNumPortals;
|
|
|
|
|
2019-09-26 09:53:15 +02:00
|
|
|
int m_iFirstShadowCaster_SOB;
|
|
|
|
int m_iNumShadowCasters_SOB;
|
|
|
|
|
2019-09-13 20:15:25 +02:00
|
|
|
// Just very rough, room centre for determining start rooms of dobs
|
|
|
|
Vector3 m_ptCentre;
|
2019-09-15 16:39:01 +02:00
|
|
|
AABB m_AABB; // world bound
|
|
|
|
|
|
|
|
// ID in the Room Manager, NOT the godot object ID
|
|
|
|
int m_RoomID;
|
2019-09-13 20:15:25 +02:00
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
ObjectID m_GodotID;
|
2019-09-12 16:51:33 +02:00
|
|
|
|
2019-09-13 20:15:25 +02:00
|
|
|
// frame counter when last touched .. prevents handling rooms multiple times
|
|
|
|
unsigned int m_uiFrameTouched;
|
|
|
|
|
2019-09-17 15:30:31 +02:00
|
|
|
// optional bounding convex hull, for accurate detection of which room to start in
|
|
|
|
// when registering DOBs and teleporting them
|
|
|
|
LBound m_Bound;
|
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
String m_szName;
|
2019-09-23 12:14:41 +02:00
|
|
|
////////////////////////////////////////////////////////////
|
2019-09-11 09:09:36 +02:00
|
|
|
|
2019-09-15 16:39:01 +02:00
|
|
|
const String &get_name() const {return m_szName;}
|
2019-09-11 09:09:36 +02:00
|
|
|
|
|
|
|
// main function
|
2019-09-15 16:39:01 +02:00
|
|
|
void DetermineVisibility_Recursive(LRoomManager &manager, int depth, const LCamera &cam, const LVector<Plane> &planes, int portalID_from = -1);
|
2019-09-15 20:26:18 +02:00
|
|
|
void FirstTouch(LRoomManager &manager);
|
2019-09-13 20:15:25 +02:00
|
|
|
|
2019-09-24 16:37:38 +02:00
|
|
|
|
|
|
|
// allows us to show / hide all dobs as the room visibility changes
|
|
|
|
void Room_MakeVisible(bool bVisible);
|
|
|
|
|
2019-09-16 15:23:10 +02:00
|
|
|
// hide godot room and all linked dobs
|
2019-09-18 12:04:02 +02:00
|
|
|
// USED AT RUNTIME
|
2019-09-24 16:37:38 +02:00
|
|
|
// void Hide_All();
|
2019-09-11 09:09:36 +02:00
|
|
|
|
2019-09-18 12:04:02 +02:00
|
|
|
// show godot room and all linked dobs and all sobs
|
2019-10-09 12:33:19 +02:00
|
|
|
void Debug_ShowAll(bool bActive);
|
2019-09-18 12:04:02 +02:00
|
|
|
|
2019-09-16 15:23:10 +02:00
|
|
|
// hide all the objects not hit on this frame .. instead of calling godot hide without need
|
|
|
|
// (it might be expensive)
|
|
|
|
void FinalizeVisibility(LRoomManager &manager);
|
|
|
|
|
2019-09-25 17:35:14 +02:00
|
|
|
// naive version, adds all the non visible objects in visible rooms as shadow casters
|
|
|
|
void AddShadowCasters(LRoomManager &manager);
|
2019-09-16 15:23:10 +02:00
|
|
|
|
|
|
|
void DOB_Add(const LDob &dob);
|
|
|
|
const LDob &DOB_Get(unsigned int ui) const {return m_DOBs[ui];}
|
|
|
|
unsigned int DOB_Find(Node * pDOB) const;
|
|
|
|
bool DOB_Remove(unsigned int ui);
|
2019-09-15 20:26:18 +02:00
|
|
|
LRoom * DOB_Update(LRoomManager &manager, Spatial * pDOB);
|
2019-09-15 16:39:01 +02:00
|
|
|
|
2019-09-11 09:09:36 +02:00
|
|
|
LRoom();
|
2019-09-15 16:39:01 +02:00
|
|
|
Spatial * GetGodotRoom() const;
|
2019-09-11 09:09:36 +02:00
|
|
|
|
2019-09-23 13:31:26 +02:00
|
|
|
// retained purely for debugging visualization
|
|
|
|
Geometry::MeshData m_Bound_MeshData;
|
2019-09-24 16:37:38 +02:00
|
|
|
|
|
|
|
bool IsVisible() const {return m_bVisible;}
|
|
|
|
// instead of directly showing and hiding objects we now set their layer,
|
|
|
|
// and the camera will hide them with a cull mask. This is so that
|
|
|
|
// objects can still be rendered outside immediate view for casting shadows.
|
2019-10-09 12:33:19 +02:00
|
|
|
static void SoftShow(VisualInstance * pVI, uint32_t show_flags);
|
2019-09-24 16:37:38 +02:00
|
|
|
|
2019-09-25 17:45:09 +02:00
|
|
|
private:
|
2019-09-24 16:37:38 +02:00
|
|
|
// whether lportal thinks this room is currently visible
|
|
|
|
// this allows us to show / hide dobs as they cross room boundaries
|
|
|
|
bool m_bVisible;
|
|
|
|
|
2019-09-11 09:09:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|