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_manager.h */
|
|
|
|
#ifndef LROOM_MANAGER_H
|
|
|
|
#define LROOM_MANAGER_H
|
|
|
|
|
|
|
|
/**
|
|
|
|
@author lawnjelly <lawnjelly@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "scene/3d/spatial.h"
|
2019-09-13 20:15:25 +02:00
|
|
|
#include "lbitfield_dynamic.h"
|
2019-09-12 20:53:24 +02:00
|
|
|
#include "lplanes_pool.h"
|
2019-09-11 09:09:36 +02:00
|
|
|
|
2020-04-02 14:36:53 +02:00
|
|
|
#include "ldoblist.h"
|
2019-09-15 16:39:01 +02:00
|
|
|
#include "lroom.h"
|
|
|
|
#include "lportal.h"
|
2019-11-19 11:29:53 +01:00
|
|
|
#include "larea.h"
|
|
|
|
#include "ltrace.h"
|
|
|
|
#include "lmain_camera.h"
|
2019-09-13 20:15:25 +02:00
|
|
|
|
2019-09-11 09:09:36 +02:00
|
|
|
class LRoomManager : public Spatial {
|
|
|
|
GDCLASS(LRoomManager, Spatial);
|
|
|
|
|
2019-09-12 20:53:24 +02:00
|
|
|
friend class LRoom;
|
2019-09-15 16:39:01 +02:00
|
|
|
friend class LRoomConverter;
|
2019-10-22 21:44:17 +02:00
|
|
|
friend class LHelper;
|
2019-11-19 11:29:53 +01:00
|
|
|
friend class LTrace;
|
|
|
|
friend class LMainCamera;
|
2020-04-02 14:36:53 +02:00
|
|
|
friend class LDobList;
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
// PUBLIC INTERFACE TO GDSCRIPT
|
|
|
|
//______________________________________________________________________________________
|
|
|
|
// Roomlist path
|
|
|
|
void set_rooms(const Object *p_rooms);
|
|
|
|
void _set_rooms(Object *p_rooms);
|
|
|
|
void set_rooms_path(const NodePath &p_path);
|
|
|
|
NodePath get_rooms_path() const;
|
|
|
|
void remove_rooms_path();
|
|
|
|
|
|
|
|
//______________________________________________________________________________________
|
|
|
|
// MAIN
|
|
|
|
// convert empties and meshes to rooms and portals
|
|
|
|
bool rooms_convert(bool bVerbose, bool bDeleteLights);
|
2019-11-20 11:31:39 +01:00
|
|
|
bool rooms_single_room_convert(bool bVerbose, bool bDeleteLights);
|
2019-11-19 11:29:53 +01:00
|
|
|
// free memory for current set of rooms, prepare for converting a new game level
|
|
|
|
void rooms_release();
|
|
|
|
|
|
|
|
// choose which camera you want to use to determine visibility.
|
|
|
|
// normally this will be your main camera, but you can choose another for debugging
|
2020-04-02 14:36:53 +02:00
|
|
|
bool rooms_set_camera(int dob_id, Node * pCam);
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
// get the Godot room that is associated with an LPortal room
|
|
|
|
// (can be used to find the name etc of a room ID returned by dob_update)
|
|
|
|
Node * rooms_get_room(int room_id);
|
|
|
|
|
2020-01-09 15:08:27 +01:00
|
|
|
// CONVENTIONS
|
|
|
|
void rooms_set_portal_plane_convention(bool bFlip);
|
|
|
|
void rooms_set_hide_method_detach(bool bDetach);
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
//______________________________________________________________________________________
|
|
|
|
// DOBS
|
|
|
|
// Dynamic objects .. cameras, players, boxes etc
|
|
|
|
// These are defined by their ability to move from room to room.
|
|
|
|
// You can still move static objects within the same room (e.g. elevators, moving platforms)
|
|
|
|
// as these don't require checks for changing rooms.
|
|
|
|
|
2020-04-02 14:36:53 +02:00
|
|
|
// returns DOB ID
|
|
|
|
int dob_register(Node * pDOB, const Vector3 &pos, float radius);
|
|
|
|
bool dob_unregister(int dob_id);
|
2019-11-19 11:29:53 +01:00
|
|
|
// returns the room ID within
|
2020-04-02 14:36:53 +02:00
|
|
|
int dob_update(int dob_id, const Vector3 &pos);
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
//______________________________________________________________________________________
|
|
|
|
// LIGHTS
|
|
|
|
// global directional lights that will apply to all rooms
|
2020-04-02 14:36:53 +02:00
|
|
|
bool global_light_register(Node * pLightNode, String szArea);
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
// dynamic lights (spot or omni within rooms)
|
2020-04-02 14:36:53 +02:00
|
|
|
// returns light ID
|
|
|
|
// only lights within the rooms on conversion are supported so far
|
|
|
|
int dynamic_light_register(Node * pLightNode, float radius);
|
|
|
|
bool dynamic_light_unregister(int light_id);
|
|
|
|
int dynamic_light_update(int light_id, const Vector3 &pos, const Vector3 &dir); // returns room within
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
//______________________________________________________________________________________
|
|
|
|
// LIGHTMAPS
|
|
|
|
// helper function to merge SOB meshes for producing lightmaps VIA external blender workflow
|
|
|
|
bool rooms_merge_sobs(Node * pMergeMeshInstance);
|
2019-12-03 16:50:30 +01:00
|
|
|
bool rooms_unmerge_sobs(Node * pMergeMeshInstance, float thresh_dist, float thresh_dot);
|
2019-11-19 11:29:53 +01:00
|
|
|
bool rooms_transfer_uv2s(Node * pMeshInstance_From, Node * pMeshInstance_To);
|
|
|
|
|
2019-12-03 16:50:30 +01:00
|
|
|
bool lightmap_external_export(String szFilename); // DAE filename
|
|
|
|
bool lightmap_external_unmerge(Node * pMergeMeshInstance, String szLevelFilename);
|
|
|
|
void lightmap_set_unmerge_params(float thresh_dist, float thresh_dot);
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// one function to do all the uv mapping and lightmap creation in one
|
|
|
|
// (for godot lightmap workflow)
|
2019-12-03 16:50:30 +01:00
|
|
|
MeshInstance * lightmap_internal(String szProxyFilename, String szLevelFilename);
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
//______________________________________________________________________________________
|
|
|
|
// HELPERS
|
|
|
|
// helper function for general use .. LPortal has the functionality, why not...
|
|
|
|
bool rooms_save_scene(Node * pNode, String szFilename);
|
|
|
|
// helpers to enable the client to manage switching on and off physics and AI
|
|
|
|
int rooms_get_num_rooms() const;
|
|
|
|
bool rooms_is_room_visible(int room_id) const;
|
|
|
|
Array rooms_get_visible_rooms() const;
|
|
|
|
// helper func, not needed usually as dob_update returns the room
|
2020-04-02 14:36:53 +02:00
|
|
|
int dob_get_room_id(int dob_id);
|
2019-12-03 16:50:30 +01:00
|
|
|
bool export_scene_DAE(Node * pNode, String szFilename);
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
|
|
|
|
//______________________________________________________________________________________
|
|
|
|
// DEBUGGING
|
|
|
|
// turn on and off culling for debugging
|
|
|
|
void rooms_set_active(bool bActive);
|
|
|
|
void rooms_set_debug_planes(bool bActive);
|
|
|
|
void rooms_set_debug_bounds(bool bActive);
|
|
|
|
void rooms_set_debug_lights(bool bActive);
|
|
|
|
void rooms_set_debug_shadows(bool bActive);
|
|
|
|
void rooms_set_debug_frustums(bool bActive);
|
|
|
|
void rooms_set_debug_frame_string(bool bActive);
|
|
|
|
|
2020-01-08 20:18:06 +01:00
|
|
|
// rough .. for debugging
|
|
|
|
Vector3 rooms_get_room_centre(int room_id) const;
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// 0 to 6 .. less to more
|
|
|
|
// defaults to 4 which is (2) in our priorities (i.e. 6 - level)
|
|
|
|
void rooms_set_logging(int level);
|
|
|
|
|
|
|
|
// optionally lportal can output some debug info in a string each frame
|
|
|
|
String rooms_get_debug_frame_string();
|
|
|
|
|
|
|
|
// provide debugging output on the next frame
|
|
|
|
void rooms_log_frame();
|
|
|
|
|
|
|
|
private:
|
|
|
|
// PER FRAME STUFF
|
2019-09-12 12:07:43 +02:00
|
|
|
|
2020-04-02 14:36:53 +02:00
|
|
|
// camera
|
|
|
|
int m_DOB_id_camera;
|
2019-09-12 16:51:33 +02:00
|
|
|
|
|
|
|
// keep track of which rooms are visible, so we can hide ones that aren't hit that were previously on
|
2019-09-13 20:15:25 +02:00
|
|
|
Lawn::LBitField_Dynamic m_BF_visible_rooms;
|
2019-09-16 15:23:10 +02:00
|
|
|
|
2019-09-25 13:28:22 +02:00
|
|
|
|
|
|
|
// the render list is all objects that are in view,
|
|
|
|
// and also objects out of view but casting shadows INTO the view
|
2019-09-26 09:53:15 +02:00
|
|
|
LVector<int> m_VisibleList_SOBs;
|
|
|
|
LVector<int> m_CasterList_SOBs;
|
2019-09-26 19:33:40 +02:00
|
|
|
|
2019-09-26 09:53:15 +02:00
|
|
|
LVector<int> m_MasterList_SOBs;
|
|
|
|
|
2019-09-25 13:28:22 +02:00
|
|
|
|
2019-09-24 19:56:46 +02:00
|
|
|
Lawn::LBitField_Dynamic m_BF_visible_SOBs;
|
2019-09-26 09:53:15 +02:00
|
|
|
Lawn::LBitField_Dynamic m_BF_caster_SOBs;
|
|
|
|
Lawn::LBitField_Dynamic m_BF_master_SOBs;
|
|
|
|
|
2019-09-26 19:33:40 +02:00
|
|
|
// previous frame
|
|
|
|
LVector<int> m_MasterList_SOBs_prev;
|
|
|
|
Lawn::LBitField_Dynamic m_BF_master_SOBs_prev;
|
|
|
|
|
2019-09-24 19:56:46 +02:00
|
|
|
|
2019-09-16 15:23:10 +02:00
|
|
|
LVector<int> m_VisibleRoomList_A;
|
|
|
|
LVector<int> m_VisibleRoomList_B;
|
2019-09-15 17:16:09 +02:00
|
|
|
|
|
|
|
LVector<int> * m_pCurr_VisibleRoomList;
|
|
|
|
LVector<int> * m_pPrev_VisibleRoomList;
|
2019-09-12 12:07:43 +02:00
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// active lights
|
|
|
|
LVector<int> m_ActiveLights;
|
|
|
|
LVector<int> m_ActiveLights_prev;
|
|
|
|
Lawn::LBitField_Dynamic m_BF_ActiveLights;
|
|
|
|
Lawn::LBitField_Dynamic m_BF_ActiveLights_prev;
|
|
|
|
|
|
|
|
// some lights may be processed on a frame but found not to intersect the view frustum
|
|
|
|
Lawn::LBitField_Dynamic m_BF_ProcessedLights;
|
|
|
|
|
|
|
|
// keep all the light rendering stuff together
|
|
|
|
struct LLightRender
|
|
|
|
{
|
|
|
|
// each time we render from a light point of view, we reuse this list to store each caster ID
|
|
|
|
Lawn::LBitField_Dynamic m_BF_Temp_SOBs;
|
|
|
|
Lawn::LBitField_Dynamic m_BF_Temp_Visible_Rooms;
|
|
|
|
LVector<int> m_Temp_Visible_SOBs;
|
|
|
|
LVector<int> m_Temp_Visible_Rooms;
|
|
|
|
} m_LightRender;
|
|
|
|
|
|
|
|
|
2019-09-13 20:15:25 +02:00
|
|
|
// keep a frame counter, to mark when objects have been hit by the visiblity algorithm
|
|
|
|
// already to prevent multiple hits on rooms and objects
|
|
|
|
unsigned int m_uiFrameCounter;
|
|
|
|
|
2020-01-08 20:18:06 +01:00
|
|
|
// the portal plane determined by the artwork geometry for room conversion can either point in or out,
|
|
|
|
// this convention is switchable
|
|
|
|
bool m_bPortalPlane_Convention;
|
|
|
|
|
2019-09-25 13:54:53 +02:00
|
|
|
private:
|
|
|
|
// lists of rooms and portals, contiguous list so cache friendly
|
|
|
|
LVector<LRoom> m_Rooms;
|
|
|
|
LVector<LPortal> m_Portals;
|
2019-11-19 11:29:53 +01:00
|
|
|
LVector<LArea> m_Areas;
|
2019-09-25 13:54:53 +02:00
|
|
|
|
|
|
|
// static objects
|
|
|
|
LVector<LSob> m_SOBs;
|
2019-10-09 12:33:19 +02:00
|
|
|
|
|
|
|
// lights
|
2019-09-26 09:53:15 +02:00
|
|
|
LVector<LLight> m_Lights;
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// SHADOWS
|
2019-09-26 09:53:15 +02:00
|
|
|
// master list of shadow casters for each room
|
2019-11-19 11:29:53 +01:00
|
|
|
LVector<uint32_t> m_ShadowCasters_SOB; // not used any more?
|
2019-09-25 13:54:53 +02:00
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// master list of casters for each light (precalculated list)
|
2019-10-09 12:33:19 +02:00
|
|
|
LVector<uint32_t> m_LightCasters_SOB;
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// AREAS
|
|
|
|
// master list of lights affecting each area
|
|
|
|
LVector<uint32_t> m_AreaLights;
|
|
|
|
|
|
|
|
// master list of rooms in each area
|
|
|
|
LVector<uint32_t> m_AreaRooms;
|
2019-09-25 13:54:53 +02:00
|
|
|
|
|
|
|
// The recursive visibility function needs to allocate loads of planes.
|
|
|
|
// We use a pool for this instead of allocating on the fly.
|
|
|
|
LPlanesPool m_Pool;
|
|
|
|
|
2020-04-02 14:36:53 +02:00
|
|
|
LDobList m_DobList;
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
// whether debug planes is switched on
|
|
|
|
bool m_bDebugPlanes;
|
|
|
|
bool m_bDebugBounds;
|
|
|
|
bool m_bDebugLights;
|
|
|
|
bool m_bDebugLightVolumes;
|
|
|
|
bool m_bDebugFrustums;
|
|
|
|
|
|
|
|
// the planes are shown as a list of lines from the camera to the portal verts
|
|
|
|
LVector<Vector3> m_DebugPlanes;
|
|
|
|
LVector<Vector3> m_DebugPortalLightPlanes;
|
|
|
|
LVector<Vector3> m_DebugLightVolumes;
|
|
|
|
LVector<Vector3> m_DebugFrustums;
|
|
|
|
|
|
|
|
// we are now referencing the rooms indirectly via a nodepath rather than directly being children
|
|
|
|
// of the LRoomManager node
|
|
|
|
NodePath m_path_RoomList;
|
|
|
|
ObjectID m_ID_RoomList;
|
|
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
LTrace m_Trace;
|
|
|
|
// unchecked
|
|
|
|
Spatial * m_pRoomList;
|
|
|
|
LMainCamera m_MainCamera;
|
|
|
|
|
|
|
|
// DEBUGGING
|
2019-09-25 13:54:53 +02:00
|
|
|
// 0 to 5
|
|
|
|
int m_iLoggingLevel;
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
ObjectID m_ID_DebugPlanes;
|
|
|
|
ObjectID m_ID_DebugBounds;
|
|
|
|
ObjectID m_ID_DebugLights;
|
|
|
|
ObjectID m_ID_DebugLightVolumes;
|
|
|
|
ObjectID m_ID_DebugFrustums;
|
|
|
|
|
|
|
|
Ref<SpatialMaterial> m_mat_Debug_Planes;
|
|
|
|
Ref<SpatialMaterial> m_mat_Debug_Bounds;
|
|
|
|
Ref<SpatialMaterial> m_mat_Debug_LightVolumes;
|
|
|
|
Ref<SpatialMaterial> m_mat_Debug_Frustums;
|
|
|
|
|
|
|
|
String m_szDebugString;
|
|
|
|
bool m_bDebugFrameString;
|
|
|
|
|
|
|
|
// for debugging, can turn LPortal on and off
|
|
|
|
bool m_bActive;
|
|
|
|
|
|
|
|
// for debugging, can emulate view frustum culling
|
|
|
|
bool m_bFrustumOnly;
|
|
|
|
|
2019-12-03 16:50:30 +01:00
|
|
|
// lightmap unmerge params
|
|
|
|
float m_fLightmapUnMerge_ThresholdDist;
|
|
|
|
float m_fLightmapUnMerge_ThresholdDot;
|
|
|
|
|
2019-09-25 13:54:53 +02:00
|
|
|
private:
|
2019-11-19 11:29:53 +01:00
|
|
|
// PRIVATE FUNCS
|
2019-09-25 13:54:53 +02:00
|
|
|
// this is where we do all the culling
|
2019-10-22 21:44:17 +02:00
|
|
|
bool FrameUpdate();
|
2019-09-25 13:54:53 +02:00
|
|
|
void FrameUpdate_Prepare();
|
|
|
|
void FrameUpdate_FinalizeRooms();
|
2019-09-25 17:35:14 +02:00
|
|
|
void FrameUpdate_AddShadowCasters();
|
2019-09-26 09:53:15 +02:00
|
|
|
void FrameUpdate_CreateMasterList();
|
2019-09-25 13:54:53 +02:00
|
|
|
void FrameUpdate_FinalizeVisibility_WithinRooms();
|
2019-09-25 17:45:09 +02:00
|
|
|
void FrameUpdate_FinalizeVisibility_SoftShow();
|
2019-09-25 13:54:53 +02:00
|
|
|
|
|
|
|
// debugging emulate view frustum
|
|
|
|
void FrameUpdate_FrustumOnly();
|
|
|
|
|
|
|
|
// draw planes and room hulls
|
2019-11-19 11:29:53 +01:00
|
|
|
void FrameUpdate_DrawDebug(const LSource &cam, const LRoom &lroom);
|
2019-09-25 13:54:53 +02:00
|
|
|
|
|
|
|
// internal
|
2019-11-20 11:31:39 +01:00
|
|
|
bool RoomsConvert(bool bVerbose, bool bDeleteLights, bool bSingleRoomMode);
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// dobs
|
2020-04-02 14:36:53 +02:00
|
|
|
int DobRegister(Spatial * pDOB, const Vector3 &pos, float radius, int iRoom);
|
|
|
|
|
2019-09-25 13:54:53 +02:00
|
|
|
ObjectID DobRegister_FindVIRecursive(Node * pNode) const;
|
2020-04-02 14:36:53 +02:00
|
|
|
// bool DobTeleport(Spatial * pDOB, int iNewRoomID);
|
|
|
|
|
|
|
|
//int DobUpdate(Spatial * pDOB_Spatial, LRoom * pRoom);
|
|
|
|
void DobUpdateVisibility(int dob_id);
|
|
|
|
|
|
|
|
// for debugging only have autoupdate mode where all dobs are updated
|
|
|
|
// void DobsAutoUpdate();
|
2019-11-19 11:29:53 +01:00
|
|
|
|
|
|
|
void CreateDebug();
|
2019-10-09 12:33:19 +02:00
|
|
|
void ReleaseResources(bool bPrepareConvert);
|
2019-10-22 21:44:17 +02:00
|
|
|
void ShowAll(bool bShow);
|
2019-11-19 11:29:53 +01:00
|
|
|
void ResolveRoomListPath();
|
|
|
|
|
|
|
|
// frame debug string
|
|
|
|
void DebugString_Set(String sz) {m_szDebugString = sz;}
|
|
|
|
void DebugString_Add(String sz) {m_szDebugString += sz;}
|
|
|
|
void DebugString_Light_AffectedRooms(int light_id);
|
|
|
|
|
|
|
|
// now we are centralizing the tracing out from static and dynamic lights for each frame to this function
|
|
|
|
bool LightCreate(Light * pLight, int roomID, String szArea = "");
|
|
|
|
void Light_UpdateTransform(LLight &light, const Light &glight) const;
|
|
|
|
void Light_FrameProcess(int lightID);
|
|
|
|
bool Light_FindCasters(int lightID);
|
2019-09-25 13:54:53 +02:00
|
|
|
|
|
|
|
|
|
|
|
// helper funcs
|
|
|
|
const LRoom * GetRoom(int i) const;
|
|
|
|
LRoom * GetRoom(int i);
|
|
|
|
|
|
|
|
int FindClosestRoom(const Vector3 &pt) const;
|
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
LRoom &Portal_GetLinkedRoom(const LPortal &port);
|
|
|
|
|
2019-09-25 13:54:53 +02:00
|
|
|
// for DOBs, we need some way of storing the room ID on them, so we use metadata (currently)
|
|
|
|
// this is pretty gross but hey ho
|
2020-04-02 14:36:53 +02:00
|
|
|
// int Meta_GetRoomNum(Node * pNode) const;
|
|
|
|
// void Meta_SetRoomNum(Node * pNode, int num);
|
2019-09-25 13:54:53 +02:00
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
// for lights we store the light ID in the metadata
|
|
|
|
void Meta_SetLightID(Node * pNode, int id);
|
|
|
|
int Meta_GetLightID(Node * pNode) const;
|
2019-10-22 21:44:17 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
// makes sure m_pRoomList is up to date and valid
|
|
|
|
bool CheckRoomList() {return GetRoomList_Checked() != 0;}
|
2019-09-25 13:54:53 +02:00
|
|
|
|
2019-10-22 21:44:17 +02:00
|
|
|
Spatial * GetRoomList_Checked();
|
|
|
|
// unchecked, be sure to call checked version first which will set m_pRoomList
|
|
|
|
Spatial * GetRoomList() const {return m_pRoomList;}
|
2019-09-23 12:14:41 +02:00
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
protected:
|
|
|
|
static void _bind_methods();
|
|
|
|
void _notification(int p_what);
|
2019-09-13 20:15:25 +02:00
|
|
|
|
2019-11-19 11:29:53 +01:00
|
|
|
public:
|
|
|
|
LRoomManager();
|
2019-09-11 09:09:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|