Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
Game Library
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Game Development
Game Library
Commits
98b12c9f
Commit
98b12c9f
authored
3 years ago
by
Joseph Walton-Rivers
Browse files
Options
Downloads
Patches
Plain Diff
use pipelines to avoid hard-coding rendering system in demo
parent
46e62412
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
demo/main.cpp
+4
-54
4 additions, 54 deletions
demo/main.cpp
fggl/gfx/ecs.hpp
+24
-0
24 additions, 0 deletions
fggl/gfx/ecs.hpp
fggl/gfx/renderer.cpp
+53
-0
53 additions, 0 deletions
fggl/gfx/renderer.cpp
fggl/math/ecs.hpp
+5
-0
5 additions, 0 deletions
fggl/math/ecs.hpp
with
86 additions
and
54 deletions
demo/main.cpp
+
4
−
54
View file @
98b12c9f
...
@@ -228,9 +228,13 @@ int main(int argc, char* argv[]) {
...
@@ -228,9 +228,13 @@ int main(int argc, char* argv[]) {
// create ECS
// create ECS
fggl
::
ecs2
::
World
world
;
fggl
::
ecs2
::
World
world
;
// load the modules
world
.
import
<
fggl
::
components
::
Math
>
();
world
.
import
<
fggl
::
components
::
Math
>
();
world
.
import
<
fggl
::
components
::
Gfx
>
();
world
.
import
<
fggl
::
components
::
Gfx
>
();
world
.
import
<
fggl
::
systems
::
OpenGL
>
();
// make camera
// make camera
auto
camEnt
=
world
.
create
(
"camera"
);
auto
camEnt
=
world
.
create
(
"camera"
);
{
{
...
@@ -295,56 +299,6 @@ int main(int argc, char* argv[]) {
...
@@ -295,56 +299,6 @@ int main(int argc, char* argv[]) {
}
}
// rendering systems - Game/OpenGL
auto
matSys
=
world
.
ecs
().
system
<
const
fggl
::
components
::
Transform
,
fggl
::
components
::
GfxMat
>
()
.
iter
([
&
world
](
flecs
::
iter
&
it
,
const
fggl
::
components
::
Transform
*
t
,
fggl
::
components
::
GfxMat
*
mats
)
{
// there is probably a more ECS-friendly way of doing this...
auto
cam
=
world
.
ecs
().
lookup
(
"camera"
);
const
auto
camComp
=
cam
.
get
<
fggl
::
components
::
Camera
>
();
const
auto
camTrans
=
cam
.
get
<
fggl
::
components
::
Transform
>
();
// build the two matrices from the camera
const
fggl
::
math
::
mat4
proj
=
glm
::
perspective
(
camComp
->
fov
,
camComp
->
aspectRatio
,
camComp
->
nearPlane
,
camComp
->
farPlane
);
const
fggl
::
math
::
mat4
view
=
glm
::
lookAt
(
camTrans
->
origin
(),
camComp
->
target
,
camTrans
->
up
()
);
// splat component data into mesh data
for
(
auto
i
:
it
)
{
mats
[
i
].
proj
=
proj
;
mats
[
i
].
view
=
view
;
mats
[
i
].
model
=
t
[
i
].
model
();
}
});
glm
::
vec3
lightPos
(
20.0
f
,
20.0
f
,
15.0
f
);
auto
drawSys
=
world
.
ecs
().
system
<>
(
"DrawSys"
,
"gfx.mat,SHARED:gfx.token"
)
.
iter
([
lightPos
](
flecs
::
iter
&
it
)
{
auto
t
=
it
.
column
<
const
fggl
::
components
::
GfxMat
>
(
1
);
auto
mesh
=
it
.
column
<
const
fggl
::
components
::
GfxToken
>
(
2
);
glEnable
(
GL_CULL_FACE
);
glCullFace
(
GL_BACK
);
glEnable
(
GL_DEPTH_TEST
);
for
(
auto
i
:
it
)
{
auto
shader
=
mesh
->
pipeline
;
glUseProgram
(
shader
);
glUniformMatrix4fv
(
glGetUniformLocation
(
shader
,
"model"
),
1
,
GL_FALSE
,
glm
::
value_ptr
(
t
[
i
].
model
)
);
glUniformMatrix4fv
(
glGetUniformLocation
(
shader
,
"view"
),
1
,
GL_FALSE
,
glm
::
value_ptr
(
t
[
i
].
view
)
);
glUniformMatrix4fv
(
glGetUniformLocation
(
shader
,
"projection"
),
1
,
GL_FALSE
,
glm
::
value_ptr
(
t
[
i
].
proj
)
);
// lighting
GLint
lightID
=
glGetUniformLocation
(
shader
,
"lightPos"
);
if
(
lightID
!=
-
1
)
glUniform3fv
(
lightID
,
1
,
glm
::
value_ptr
(
lightPos
)
);
glBindVertexArray
(
mesh
->
vao
);
glDrawElements
(
GL_TRIANGLES
,
mesh
->
idxSize
,
GL_UNSIGNED_INT
,
reinterpret_cast
<
void
*>
(
mesh
->
idxOffset
)
);
}
});
fggl
::
gfx
::
Input
&
input
=
fggl
::
gfx
::
Input
::
instance
();
fggl
::
gfx
::
Input
&
input
=
fggl
::
gfx
::
Input
::
instance
();
world
.
ecs
().
system
<
fggl
::
components
::
Transform
,
fggl
::
components
::
Camera
>
()
world
.
ecs
().
system
<
fggl
::
components
::
Transform
,
fggl
::
components
::
Camera
>
()
...
@@ -489,10 +443,6 @@ int main(int argc, char* argv[]) {
...
@@ -489,10 +443,6 @@ int main(int argc, char* argv[]) {
world
.
tick
(
dt
);
world
.
tick
(
dt
);
// rendering systems
matSys
.
run
(
dt
);
drawSys
.
run
(
dt
);
// render using real shader
// render using real shader
debug
.
draw
();
debug
.
draw
();
win
.
swap
();
win
.
swap
();
...
...
This diff is collapsed.
Click to expand it.
fggl/gfx/ecs.hpp
+
24
−
0
View file @
98b12c9f
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
#include
<fggl/ecs2/ecs.hpp>
#include
<fggl/ecs2/ecs.hpp>
#include
<fggl/math/types.hpp>
#include
<fggl/math/types.hpp>
#include
<fggl/math/ecs.hpp>
#include
<GL/gl.h>
#include
<GL/gl.h>
namespace
fggl
::
components
{
namespace
fggl
::
components
{
...
@@ -41,4 +42,27 @@ namespace fggl::components {
...
@@ -41,4 +42,27 @@ namespace fggl::components {
};
};
};
};
namespace
fggl
::
systems
{
void
fglPopulateVertex
(
flecs
::
iter
&
it
,
const
fggl
::
components
::
Transform
*
t
,
fggl
::
components
::
GfxMat
*
mats
);
void
fglDrawMeshes
(
flecs
::
iter
&
it
);
class
OpenGL
{
public:
inline
OpenGL
(
ecs2
::
impl
::
world
&
world
)
{
world
.
module
<
OpenGL
>
(
"ogl"
);
world
.
system
<
const
fggl
::
components
::
Transform
,
fggl
::
components
::
GfxMat
>
(
"VertPrep"
)
.
kind
(
flecs
::
OnStore
)
.
iter
(
fglPopulateVertex
);
world
.
system
<>
(
"DrawSys"
,
"gfx.mat,SHARED:gfx.token"
)
.
kind
(
flecs
::
OnStore
)
.
iter
(
fglDrawMeshes
);
}
};
}
#endif
#endif
This diff is collapsed.
Click to expand it.
fggl/gfx/renderer.cpp
+
53
−
0
View file @
98b12c9f
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
#include
<fggl/gfx/rendering.hpp>
#include
<fggl/gfx/rendering.hpp>
#include
<fggl/gfx/camera.hpp>
#include
<fggl/gfx/camera.hpp>
#include
<fggl/math/ecs.hpp>
#include
<fggl/gfx/ecs.hpp>
#include
<fggl/data/model.hpp>
#include
<fggl/data/model.hpp>
#include
<glm/ext/matrix_transform.hpp>
#include
<glm/ext/matrix_transform.hpp>
...
@@ -121,3 +124,53 @@ void MeshRenderer::render(const Window& window, const fggl::ecs::ECS& ecs, const
...
@@ -121,3 +124,53 @@ void MeshRenderer::render(const Window& window, const fggl::ecs::ECS& ecs, const
}
}
namespace
fggl
::
systems
{
void
fglPopulateVertex
(
flecs
::
iter
&
it
,
const
fggl
::
components
::
Transform
*
t
,
fggl
::
components
::
GfxMat
*
mats
)
{
auto
cam
=
it
.
world
().
lookup
(
"camera"
);
const
auto
camComp
=
cam
.
get
<
fggl
::
components
::
Camera
>
();
const
auto
camTrans
=
cam
.
get
<
fggl
::
components
::
Transform
>
();
// build the two matrices from the camera
const
fggl
::
math
::
mat4
proj
=
glm
::
perspective
(
camComp
->
fov
,
camComp
->
aspectRatio
,
camComp
->
nearPlane
,
camComp
->
farPlane
);
const
fggl
::
math
::
mat4
view
=
glm
::
lookAt
(
camTrans
->
origin
(),
camComp
->
target
,
camTrans
->
up
()
);
// splat component data into mesh data
for
(
auto
i
:
it
)
{
mats
[
i
].
proj
=
proj
;
mats
[
i
].
view
=
view
;
mats
[
i
].
model
=
t
[
i
].
model
();
}
}
void
fglDrawMeshes
(
flecs
::
iter
&
it
)
{
// FIXME get lighting data from scene
glm
::
vec3
lightPos
(
20.0
f
,
20.0
f
,
15.0
f
);
auto
t
=
it
.
column
<
const
fggl
::
components
::
GfxMat
>
(
1
);
auto
mesh
=
it
.
column
<
const
fggl
::
components
::
GfxToken
>
(
2
);
glEnable
(
GL_CULL_FACE
);
glCullFace
(
GL_BACK
);
glEnable
(
GL_DEPTH_TEST
);
for
(
auto
i
:
it
)
{
auto
shader
=
mesh
->
pipeline
;
glUseProgram
(
shader
);
glUniformMatrix4fv
(
glGetUniformLocation
(
shader
,
"model"
),
1
,
GL_FALSE
,
glm
::
value_ptr
(
t
[
i
].
model
)
);
glUniformMatrix4fv
(
glGetUniformLocation
(
shader
,
"view"
),
1
,
GL_FALSE
,
glm
::
value_ptr
(
t
[
i
].
view
)
);
glUniformMatrix4fv
(
glGetUniformLocation
(
shader
,
"projection"
),
1
,
GL_FALSE
,
glm
::
value_ptr
(
t
[
i
].
proj
)
);
// lighting
GLint
lightID
=
glGetUniformLocation
(
shader
,
"lightPos"
);
if
(
lightID
!=
-
1
)
glUniform3fv
(
lightID
,
1
,
glm
::
value_ptr
(
lightPos
)
);
glBindVertexArray
(
mesh
->
vao
);
glDrawElements
(
GL_TRIANGLES
,
mesh
->
idxSize
,
GL_UNSIGNED_INT
,
reinterpret_cast
<
void
*>
(
mesh
->
idxOffset
)
);
}
}
};
This diff is collapsed.
Click to expand it.
fggl/math/ecs.hpp
+
5
−
0
View file @
98b12c9f
#ifndef FGGL_MATH_ECS_H
#define FGGL_MATH_ECS_H
#include
<fggl/ecs2/ecs.hpp>
#include
<fggl/ecs2/ecs.hpp>
#include
<fggl/math/types.hpp>
#include
<fggl/math/types.hpp>
...
@@ -13,3 +16,5 @@ namespace fggl::components {
...
@@ -13,3 +16,5 @@ namespace fggl::components {
}
}
};
};
}
}
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment