2021-07-24 05:19:52 +00:00
|
|
|
/*
|
|
|
|
scene.h
|
|
|
|
|
|
|
|
Entity management
|
|
|
|
|
|
|
|
Copyright (C) 2021 Bill Currie <bill@taniwha.org>
|
|
|
|
|
|
|
|
Author: Bill Currie <bill@taniwha.org>
|
|
|
|
Date: 2021/02/26
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to:
|
|
|
|
|
|
|
|
Free Software Foundation, Inc.
|
|
|
|
59 Temple Place - Suite 330
|
|
|
|
Boston, MA 02111-1307, USA
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __QF_scene_scene_h
|
|
|
|
#define __QF_scene_scene_h
|
|
|
|
|
|
|
|
#include "QF/darray.h"
|
|
|
|
|
|
|
|
#include "QF/scene/types.h"
|
|
|
|
|
|
|
|
/** \defgroup scene Scene management
|
|
|
|
\ingroup utils
|
|
|
|
*/
|
|
|
|
///@{
|
|
|
|
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
enum scene_components {
|
|
|
|
scene_href, //hierarchical transform
|
|
|
|
scene_animation,
|
|
|
|
scene_visibility,
|
|
|
|
scene_renderer,
|
|
|
|
scene_active,
|
|
|
|
scene_old_origin, //XXX FIXME XXX should not be here
|
2022-11-15 06:21:20 +00:00
|
|
|
scene_colormap,
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
|
2022-10-25 10:36:09 +00:00
|
|
|
//FIXME these should probably be private to the sw renderer (and in a
|
|
|
|
//group, which needs to be implemented), but need to sort out a good
|
|
|
|
//scheme for semi-dynamic components
|
|
|
|
scene_sw_matrix, // world transform matrix
|
|
|
|
scene_sw_frame, // animation frame
|
|
|
|
scene_sw_brush, // brush model data pointer
|
|
|
|
|
2022-12-12 04:37:01 +00:00
|
|
|
scene_comp_count
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
};
|
|
|
|
|
2021-07-24 05:19:52 +00:00
|
|
|
typedef struct scene_s {
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
struct ecs_registry_s *reg;
|
|
|
|
|
2022-05-05 05:41:46 +00:00
|
|
|
struct model_s *worldmodel;
|
|
|
|
int num_models;
|
|
|
|
struct model_s **models;
|
2022-05-05 05:58:47 +00:00
|
|
|
struct mleaf_s *viewleaf;
|
|
|
|
struct lightingdata_s *lights;
|
2021-07-24 05:19:52 +00:00
|
|
|
} scene_t;
|
|
|
|
|
|
|
|
scene_t *Scene_NewScene (void);
|
2022-02-14 07:41:38 +00:00
|
|
|
void Scene_DeleteScene (scene_t *scene);
|
[scene] Make entity_t just an entity id for ECS
This puts the hierarchy (transform) reference, animation, visibility,
renderer, active, and old_origin data in separate components. There are
a few bugs (crashes on grenade explosions in gl/glsl/vulkan, immediately
in sw, reasons known, missing brush models in vulkan).
While quake doesn't really need an ECS, the direction I want to take QF
does, and it does seem to have improved memory bandwidth a little
(uncertain). However, there's a lot more work to go (especially fixing
the above bugs), but this seems to be a good start.
2022-10-23 01:32:09 +00:00
|
|
|
struct entity_s Scene_CreateEntity (scene_t *scene);
|
|
|
|
void Scene_DestroyEntity (scene_t *scene, struct entity_s entity);
|
2021-07-24 05:19:52 +00:00
|
|
|
void Scene_FreeAllEntities (scene_t *scene);
|
|
|
|
|
|
|
|
|
|
|
|
///@}
|
|
|
|
|
|
|
|
#endif//__QF_scene_scene_h
|