improved orbitals object

This commit is contained in:
Lauchmelder 2021-11-18 16:00:31 +01:00
parent 24b701d957
commit e705b3a8d8
7 changed files with 98 additions and 62 deletions

View file

@ -2,15 +2,12 @@
#include <glm/gtc/matrix_transform.hpp> #include <glm/gtc/matrix_transform.hpp>
Camera::Camera() : Camera::Camera(float fov, float aspectRatio) :
viewMatrix(1.0f), position(0.0f), front({ 0.0f, 0.0f, -1.0f }), up({ 0.0f, 1.0f, 0.0f }), yawPitchRoll({ -90.0f, 0.0f, 0.0f }) viewMatrix(1.0f), position(0.0f),
front({ 0.0f, 0.0f, -1.0f }), up({ 0.0f, 1.0f, 0.0f }),
yawPitchRoll({ -90.0f, 0.0f, 0.0f })
{ {
} projectionMatrix = glm::perspective(glm::radians(fov), aspectRatio, 0.1f, 100.0f);
float* Camera::GetViewMatrix()
{
viewMatrix = glm::lookAt(position, position + front, up);
return &viewMatrix[0][0];
} }
void Camera::SetPosition(const glm::vec3& position) void Camera::SetPosition(const glm::vec3& position)
@ -18,6 +15,11 @@ void Camera::SetPosition(const glm::vec3& position)
this->position = position; this->position = position;
} }
void Camera::UpdatePerspective(float fov, float aspectRatio)
{
projectionMatrix = glm::perspective(glm::radians(fov), aspectRatio, 0.1f, 100.0f);
}
void Camera::MoveForward(float amount, float frametime) void Camera::MoveForward(float amount, float frametime)
{ {
position += amount * front * frametime; position += amount * front * frametime;
@ -52,3 +54,14 @@ void Camera::HandleMouseMoved(double deltaX, double deltaY, float sensitivity, f
direction.z = sin(glm::radians(yawPitchRoll.x)) * cos(glm::radians(yawPitchRoll.y)); direction.z = sin(glm::radians(yawPitchRoll.x)) * cos(glm::radians(yawPitchRoll.y));
front = glm::normalize(direction); front = glm::normalize(direction);
} }
const glm::mat4& Camera::GetViewMatrix()
{
viewMatrix = glm::lookAt(position, position + front, up);
return viewMatrix;
}
const glm::mat4& Camera::GetProjectionMatrix() const
{
return projectionMatrix;
}

View file

@ -5,11 +5,10 @@
class Camera class Camera
{ {
public: public:
Camera(); Camera(float fov, float aspectRatio);
float* GetViewMatrix();
void SetPosition(const glm::vec3& position); void SetPosition(const glm::vec3& position);
void UpdatePerspective(float fov, float aspectRatio);
void MoveForward(float amount, float frametime); void MoveForward(float amount, float frametime);
void MoveRight(float amount, float frametime); void MoveRight(float amount, float frametime);
@ -17,8 +16,13 @@ public:
void HandleMouseMoved(double deltaX, double deltaY, float sensitivity, float frametime); void HandleMouseMoved(double deltaX, double deltaY, float sensitivity, float frametime);
const glm::mat4& GetViewMatrix();
const glm::mat4& GetProjectionMatrix() const;
private: private:
glm::mat4 viewMatrix; glm::mat4 viewMatrix;
glm::mat4 projectionMatrix;
glm::vec3 position; glm::vec3 position;
glm::vec3 front; glm::vec3 front;
glm::vec3 up; glm::vec3 up;

View file

@ -3,7 +3,7 @@
#include <glad/glad.h> #include <glad/glad.h>
Model::Model() : Model::Model() :
vertices({}), indices({}), vao(0), ebo(0), vbo(0) vertices({}), indices({}), vao(0), ebo(0), vbo(0), modelMatrix({1.0f})
{ {
} }

View file

@ -1,6 +1,7 @@
#pragma once #pragma once
#include <vector> #include <vector>
#include <glm/matrix.hpp>
class Model class Model
{ {
@ -20,6 +21,7 @@ protected:
protected: protected:
std::vector<float> vertices; std::vector<float> vertices;
std::vector<unsigned int> indices; std::vector<unsigned int> indices;
glm::mat4 modelMatrix;
private: private:
unsigned int vbo, ebo, vao; unsigned int vbo, ebo, vao;

View file

@ -1,21 +1,76 @@
#include "Orbital.hpp" #include "Orbital.hpp"
#include <glad/glad.h> #define TWO_PI 6.28318530718
#define TWO_PI 6.28318530718
#define PI 3.14159265359 #define PI 3.14159265359
#include <cmath> #include <cmath>
#include <complex> #include <complex>
#include <glad/glad.h>
#include <glm/gtc/matrix_transform.hpp>
#include <glm/gtc/type_ptr.hpp>
#include "Shader.hpp"
#include "Camera.hpp"
// Write some shaders to display the orbitals (too lazy to put them in files)
Shader* Orbital::defaultShader = nullptr;
std::complex<double> SphericalHarmonic(unsigned int l, unsigned int m, float theta, float phi); std::complex<double> SphericalHarmonic(unsigned int l, unsigned int m, float theta, float phi);
unsigned int Fac(unsigned int n); unsigned int Fac(unsigned int n);
Orbital::Orbital(unsigned int l, unsigned int m) : Orbital::Orbital(unsigned int l, unsigned int m) :
l(l), m(m) l(l), m(m)
{ {
if (defaultShader == nullptr)
{
defaultShader = new Shader(
R"(
#version 460 core
layout(location = 0) in vec3 position;
layout(location = 1) in vec3 color;
out vec3 outColor;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
void main()
{
outColor = color;
gl_Position = projection * view * model * vec4(position, 1.0f);
}
)",
R"(
#version 460 core
in vec3 outColor;
out vec4 FragColor;
void main()
{
FragColor = vec4(outColor, 1.0f);
}
)"
);
}
UpdateModel(); UpdateModel();
CreateVAO(); CreateVAO();
modelMatrix = glm::rotate(modelMatrix, glm::radians(90.0f), glm::vec3(1.0f, 0.0f, 0.0f));
modelMatrix = glm::scale(modelMatrix, glm::vec3(3.0f));
}
void Orbital::BindDefaultShader(Camera& camera)
{
defaultShader->Bind();
defaultShader->SetMatrix("model", glm::value_ptr(modelMatrix));
defaultShader->SetMatrix("view", glm::value_ptr(camera.GetViewMatrix()));
defaultShader->SetMatrix("projection", glm::value_ptr(camera.GetProjectionMatrix()));
} }
void Orbital::UpdateModel() void Orbital::UpdateModel()

View file

@ -2,15 +2,21 @@
#include "Model.hpp" #include "Model.hpp"
class Shader;
class Camera;
class Orbital : public Model class Orbital : public Model
{ {
public: public:
Orbital(unsigned int l, unsigned int m); Orbital(unsigned int l, unsigned int m);
void BindDefaultShader(Camera& camera);
private: private:
void UpdateModel(); void UpdateModel();
void DefineVAOLayout() final override; void DefineVAOLayout() final override;
private: private:
unsigned int l, m; unsigned int l, m;
static Shader* defaultShader;
}; };

View file

@ -13,7 +13,6 @@
struct UserData struct UserData
{ {
glm::mat4* projectionMatrix;
Camera* camera; Camera* camera;
float frametime; float frametime;
double lastX, lastY; double lastX, lastY;
@ -82,48 +81,11 @@ int main(int argc, char** argv)
// Set up a camera // Set up a camera
// TODO: should the projection matrix be part of the camera? // TODO: should the projection matrix be part of the camera?
Camera camera; Camera camera(110.0f, 1200.0f / 800.0f);
camera.SetPosition(glm::vec3(0.0f, 0.0f, 3.0f)); camera.SetPosition(glm::vec3(0.0f, 0.0f, 3.0f));
glm::mat4 projectionMatrix = glm::perspective(glm::radians(110.0f), 1200.0f / 800.0f, 0.1f, 100.0f);
// Write some shaders to display the orbitals (too lazy to put them in files)
Shader shader(
R"(
#version 460 core
layout(location = 0) in vec3 position;
layout(location = 1) in vec3 color;
out vec3 outColor;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
void main()
{
outColor = color;
gl_Position = projection * view * model * vec4(position, 1.0f);
}
)",
R"(
#version 460 core
in vec3 outColor;
out vec4 FragColor;
void main()
{
FragColor = vec4(outColor, 1.0f);
}
)"
);
// Data that we want to be able to access from anywhere // Data that we want to be able to access from anywhere
UserData data = { UserData data = {
&projectionMatrix, // Projection matrix
&camera, // The camera object &camera, // The camera object
0.0, // Duration of the last frame 0.0, // Duration of the last frame
0.0, 0.0, // Mouse position of the last frame 0.0, 0.0, // Mouse position of the last frame
@ -158,13 +120,7 @@ int main(int argc, char** argv)
ImGui_ImplGlfw_NewFrame(); ImGui_ImplGlfw_NewFrame();
ImGui::NewFrame(); ImGui::NewFrame();
// Use our shader and set the matrices orbital.BindDefaultShader(camera);
shader.Bind();
shader.SetMatrix("model", &modelMatrix[0][0]);
shader.SetMatrix("view", camera.GetViewMatrix());
shader.SetMatrix("projection", &projectionMatrix[0][0]);
// Finally draw the orbital
orbital.Draw(); orbital.Draw();
ImGui::Begin("Test Window"); ImGui::Begin("Test Window");
@ -192,7 +148,7 @@ void OnFramebufferResize(GLFWwindow* window, int width, int height)
{ {
glViewport(0, 0, width, height); glViewport(0, 0, width, height);
UserData* data = (UserData*)glfwGetWindowUserPointer(window); UserData* data = (UserData*)glfwGetWindowUserPointer(window);
*(data->projectionMatrix) = glm::perspective(glm::radians(110.0f), (float)width / (float)height, 0.1f, 100.0f); data->camera->UpdatePerspective(110.0f, (float)width / (float)height);
} }
void OnMouseMoved(GLFWwindow* window, double xpos, double ypos) void OnMouseMoved(GLFWwindow* window, double xpos, double ypos)