mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
Refactors camera and prediction engine traits.
Moves camera and prediction engine implementations into traits for each engine, decoupling the engine-specific logic from the core classes, promoting code reuse and maintainability. This change allows for easier addition of new engines and customization of existing ones.
This commit is contained in:
@@ -5,18 +5,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "omath/engines/iw_engine/constants.hpp"
|
#include "omath/engines/iw_engine/constants.hpp"
|
||||||
#include "omath/projection/camera.hpp"
|
#include "omath/projection/camera.hpp"
|
||||||
|
#include "traits/camera_trait.hpp"
|
||||||
|
|
||||||
namespace omath::iw_engine
|
namespace omath::iw_engine
|
||||||
{
|
{
|
||||||
class Camera final : public projection::Camera<Mat4X4, ViewAngles>
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait>;
|
||||||
{
|
|
||||||
public:
|
|
||||||
Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, float near, float far);
|
|
||||||
void look_at(const Vector3<float>& target) override;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
[[nodiscard]] Mat4X4 calc_view_matrix() const noexcept override;
|
|
||||||
[[nodiscard]] Mat4X4 calc_projection_matrix() const noexcept override;
|
|
||||||
};
|
|
||||||
} // namespace omath::iw_engine
|
} // namespace omath::iw_engine
|
||||||
24
include/omath/engines/iw_engine/traits/camera_trait.hpp
Normal file
24
include/omath/engines/iw_engine/traits/camera_trait.hpp
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/10/2025.
|
||||||
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "omath/engines/iw_engine/constants.hpp"
|
||||||
|
#include "omath/projection/camera.hpp"
|
||||||
|
|
||||||
|
namespace omath::iw_engine
|
||||||
|
{
|
||||||
|
class CameraTrait final
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
[[nodiscard]]
|
||||||
|
static ViewAngles calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept;
|
||||||
|
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept;
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_projection_matrix(const projection::FieldOfView& fov, const projection::ViewPort& view_port,
|
||||||
|
float near, float far) noexcept;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace omath::iw_engine
|
||||||
@@ -8,27 +8,26 @@
|
|||||||
#include "omath/projectile_prediction/target.hpp"
|
#include "omath/projectile_prediction/target.hpp"
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
namespace omath::projectile_prediction::traits
|
namespace omath::iw_engine
|
||||||
{
|
{
|
||||||
class IwEngineTrait final
|
class PredEngineTrait final
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
constexpr static Vector3<float> predict_projectile_position(const Projectile& projectile, const float pitch,
|
constexpr static Vector3<float> predict_projectile_position(const projectile_prediction::Projectile& projectile,
|
||||||
const float yaw, const float time,
|
const float pitch, const float yaw,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto current_pos = projectile.m_origin
|
auto current_pos = projectile.m_origin
|
||||||
+ iw_engine::forward_vector({iw_engine::PitchAngle::from_degrees(-pitch),
|
+ forward_vector({PitchAngle::from_degrees(-pitch), YawAngle::from_degrees(yaw),
|
||||||
iw_engine::YawAngle::from_degrees(yaw),
|
RollAngle::from_degrees(0)})
|
||||||
iw_engine::RollAngle::from_degrees(0)})
|
|
||||||
* projectile.m_launch_speed * time;
|
* projectile.m_launch_speed * time;
|
||||||
current_pos.z -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
current_pos.z -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
||||||
|
|
||||||
return current_pos;
|
return current_pos;
|
||||||
}
|
}
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static constexpr Vector3<float> predict_target_position(const Target& target, const float time,
|
static constexpr Vector3<float> predict_target_position(const projectile_prediction::Target& target,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto predicted = target.m_origin + target.m_velocity * time;
|
auto predicted = target.m_origin + target.m_velocity * time;
|
||||||
|
|
||||||
@@ -50,7 +49,7 @@ namespace omath::projectile_prediction::traits
|
|||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static Vector3<float> calc_viewpoint_from_angles(const Projectile& projectile,
|
static Vector3<float> calc_viewpoint_from_angles(const projectile_prediction::Projectile& projectile,
|
||||||
Vector3<float> predicted_target_position,
|
Vector3<float> predicted_target_position,
|
||||||
const std::optional<float> projectile_pitch) noexcept
|
const std::optional<float> projectile_pitch) noexcept
|
||||||
{
|
{
|
||||||
@@ -77,4 +76,4 @@ namespace omath::projectile_prediction::traits
|
|||||||
return angles::radians_to_degrees(std::atan2(delta.y, delta.x));
|
return angles::radians_to_degrees(std::atan2(delta.y, delta.x));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
} // namespace omath::projectile_prediction::traits
|
} // namespace omath::iw_engine
|
||||||
@@ -4,16 +4,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "omath/engines/opengl_engine/constants.hpp"
|
#include "omath/engines/opengl_engine/constants.hpp"
|
||||||
#include "omath/projection/camera.hpp"
|
#include "omath/projection/camera.hpp"
|
||||||
|
#include "traits/camera_trait.hpp"
|
||||||
|
|
||||||
namespace omath::opengl_engine
|
namespace omath::opengl_engine
|
||||||
{
|
{
|
||||||
class Camera final : public projection::Camera<Mat4X4, ViewAngles>
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait>;
|
||||||
{
|
|
||||||
public:
|
|
||||||
Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, float near, float far);
|
|
||||||
void look_at(const Vector3<float>& target) override;
|
|
||||||
[[nodiscard]] Mat4X4 calc_view_matrix() const noexcept override;
|
|
||||||
[[nodiscard]] Mat4X4 calc_projection_matrix() const noexcept override;
|
|
||||||
};
|
|
||||||
} // namespace omath::opengl_engine
|
} // namespace omath::opengl_engine
|
||||||
24
include/omath/engines/opengl_engine/traits/camera_trait.hpp
Normal file
24
include/omath/engines/opengl_engine/traits/camera_trait.hpp
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/10/2025.
|
||||||
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "omath/engines/opengl_engine/constants.hpp"
|
||||||
|
#include "omath/projection/camera.hpp"
|
||||||
|
|
||||||
|
namespace omath::opengl_engine
|
||||||
|
{
|
||||||
|
class CameraTrait final
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
[[nodiscard]]
|
||||||
|
static ViewAngles calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept;
|
||||||
|
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept;
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_projection_matrix(const projection::FieldOfView& fov, const projection::ViewPort& view_port,
|
||||||
|
float near, float far) noexcept;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace omath::opengl_engine
|
||||||
@@ -7,27 +7,26 @@
|
|||||||
#include "omath/projectile_prediction/target.hpp"
|
#include "omath/projectile_prediction/target.hpp"
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
namespace omath::projectile_prediction::traits
|
namespace omath::opengl_engine
|
||||||
{
|
{
|
||||||
class OpenGlEngineTrait final
|
class PredEngineTrait final
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
constexpr static Vector3<float> predict_projectile_position(const Projectile& projectile, const float pitch,
|
constexpr static Vector3<float> predict_projectile_position(const projectile_prediction::Projectile& projectile,
|
||||||
const float yaw, const float time,
|
const float pitch, const float yaw,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto current_pos = projectile.m_origin
|
auto current_pos = projectile.m_origin
|
||||||
+ opengl_engine::forward_vector({opengl_engine::PitchAngle::from_degrees(-pitch),
|
+ forward_vector({PitchAngle::from_degrees(-pitch), YawAngle::from_degrees(yaw),
|
||||||
opengl_engine::YawAngle::from_degrees(yaw),
|
RollAngle::from_degrees(0)})
|
||||||
opengl_engine::RollAngle::from_degrees(0)})
|
|
||||||
* projectile.m_launch_speed * time;
|
* projectile.m_launch_speed * time;
|
||||||
current_pos.y -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
current_pos.y -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
||||||
|
|
||||||
return current_pos;
|
return current_pos;
|
||||||
}
|
}
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static constexpr Vector3<float> predict_target_position(const Target& target, const float time,
|
static constexpr Vector3<float> predict_target_position(const projectile_prediction::Target& target,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto predicted = target.m_origin + target.m_velocity * time;
|
auto predicted = target.m_origin + target.m_velocity * time;
|
||||||
|
|
||||||
@@ -49,7 +48,7 @@ namespace omath::projectile_prediction::traits
|
|||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static Vector3<float> calc_viewpoint_from_angles(const Projectile& projectile,
|
static Vector3<float> calc_viewpoint_from_angles(const projectile_prediction::Projectile& projectile,
|
||||||
Vector3<float> predicted_target_position,
|
Vector3<float> predicted_target_position,
|
||||||
const std::optional<float> projectile_pitch) noexcept
|
const std::optional<float> projectile_pitch) noexcept
|
||||||
{
|
{
|
||||||
@@ -76,4 +75,4 @@ namespace omath::projectile_prediction::traits
|
|||||||
return angles::radians_to_degrees(std::atan2(delta.z, delta.x));
|
return angles::radians_to_degrees(std::atan2(delta.z, delta.x));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
} // namespace omath::projectile_prediction::traits
|
} // namespace omath::opengl_engine
|
||||||
@@ -4,18 +4,8 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "omath/engines/source_engine/constants.hpp"
|
#include "omath/engines/source_engine/constants.hpp"
|
||||||
#include "omath/projection/camera.hpp"
|
#include "omath/projection/camera.hpp"
|
||||||
|
#include "traits/camera_trait.hpp"
|
||||||
namespace omath::source_engine
|
namespace omath::source_engine
|
||||||
{
|
{
|
||||||
class Camera final : public projection::Camera<Mat4X4, ViewAngles>
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait>;
|
||||||
{
|
|
||||||
public:
|
|
||||||
Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, float near, float far);
|
|
||||||
void look_at(const Vector3<float>& target) override;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
[[nodiscard]] Mat4X4 calc_view_matrix() const noexcept override;
|
|
||||||
[[nodiscard]] Mat4X4 calc_projection_matrix() const noexcept override;
|
|
||||||
};
|
|
||||||
} // namespace omath::source_engine
|
} // namespace omath::source_engine
|
||||||
24
include/omath/engines/source_engine/traits/camera_trait.hpp
Normal file
24
include/omath/engines/source_engine/traits/camera_trait.hpp
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/10/2025.
|
||||||
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "omath/engines/source_engine/constants.hpp"
|
||||||
|
#include "omath/projection/camera.hpp"
|
||||||
|
|
||||||
|
namespace omath::source_engine
|
||||||
|
{
|
||||||
|
class CameraTrait final
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
[[nodiscard]]
|
||||||
|
static ViewAngles calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept;
|
||||||
|
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept;
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_projection_matrix(const projection::FieldOfView& fov, const projection::ViewPort& view_port,
|
||||||
|
float near, float far) noexcept;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace omath::source_engine
|
||||||
@@ -8,27 +8,26 @@
|
|||||||
#include "omath/projectile_prediction/target.hpp"
|
#include "omath/projectile_prediction/target.hpp"
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
namespace omath::projectile_prediction::traits
|
namespace omath::source_engine
|
||||||
{
|
{
|
||||||
class SourceEngineTrait final
|
class PredEngineTrait final
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
constexpr static Vector3<float> predict_projectile_position(const Projectile& projectile, const float pitch,
|
constexpr static Vector3<float> predict_projectile_position(const projectile_prediction::Projectile& projectile,
|
||||||
const float yaw, const float time,
|
const float pitch, const float yaw,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto current_pos = projectile.m_origin
|
auto current_pos = projectile.m_origin
|
||||||
+ source_engine::forward_vector({source_engine::PitchAngle::from_degrees(-pitch),
|
+ forward_vector({PitchAngle::from_degrees(-pitch), YawAngle::from_degrees(yaw),
|
||||||
source_engine::YawAngle::from_degrees(yaw),
|
RollAngle::from_degrees(0)})
|
||||||
source_engine::RollAngle::from_degrees(0)})
|
|
||||||
* projectile.m_launch_speed * time;
|
* projectile.m_launch_speed * time;
|
||||||
current_pos.z -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
current_pos.z -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
||||||
|
|
||||||
return current_pos;
|
return current_pos;
|
||||||
}
|
}
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static constexpr Vector3<float> predict_target_position(const Target& target, const float time,
|
static constexpr Vector3<float> predict_target_position(const projectile_prediction::Target& target,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto predicted = target.m_origin + target.m_velocity * time;
|
auto predicted = target.m_origin + target.m_velocity * time;
|
||||||
|
|
||||||
@@ -50,7 +49,7 @@ namespace omath::projectile_prediction::traits
|
|||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static Vector3<float> calc_viewpoint_from_angles(const Projectile& projectile,
|
static Vector3<float> calc_viewpoint_from_angles(const projectile_prediction::Projectile& projectile,
|
||||||
Vector3<float> predicted_target_position,
|
Vector3<float> predicted_target_position,
|
||||||
const std::optional<float> projectile_pitch) noexcept
|
const std::optional<float> projectile_pitch) noexcept
|
||||||
{
|
{
|
||||||
@@ -77,4 +76,4 @@ namespace omath::projectile_prediction::traits
|
|||||||
return angles::radians_to_degrees(std::atan2(delta.y, delta.x));
|
return angles::radians_to_degrees(std::atan2(delta.y, delta.x));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
} // namespace omath::projectile_prediction::traits
|
} // namespace omath::source_engine
|
||||||
@@ -5,18 +5,9 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include "omath/engines/unity_engine/constants.hpp"
|
#include "omath/engines/unity_engine/constants.hpp"
|
||||||
#include "omath/projection/camera.hpp"
|
#include "omath/projection/camera.hpp"
|
||||||
|
#include "traits/camera_trait.hpp"
|
||||||
|
|
||||||
namespace omath::unity_engine
|
namespace omath::unity_engine
|
||||||
{
|
{
|
||||||
class Camera final : public projection::Camera<Mat4X4, ViewAngles>
|
using Camera = projection::Camera<Mat4X4, ViewAngles, CameraTrait>;
|
||||||
{
|
|
||||||
public:
|
|
||||||
Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, float near, float far);
|
|
||||||
void look_at(const Vector3<float>& target) override;
|
|
||||||
|
|
||||||
protected:
|
|
||||||
[[nodiscard]] Mat4X4 calc_view_matrix() const noexcept override;
|
|
||||||
[[nodiscard]] Mat4X4 calc_projection_matrix() const noexcept override;
|
|
||||||
};
|
|
||||||
} // namespace omath::unity_engine
|
} // namespace omath::unity_engine
|
||||||
24
include/omath/engines/unity_engine/traits/camera_trait.hpp
Normal file
24
include/omath/engines/unity_engine/traits/camera_trait.hpp
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/10/2025.
|
||||||
|
//
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "omath/engines/unity_engine/formulas.hpp"
|
||||||
|
#include "omath/projection/camera.hpp"
|
||||||
|
|
||||||
|
namespace omath::unity_engine
|
||||||
|
{
|
||||||
|
class CameraTrait final
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
[[nodiscard]]
|
||||||
|
static ViewAngles calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept;
|
||||||
|
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept;
|
||||||
|
[[nodiscard]]
|
||||||
|
static Mat4X4 calc_projection_matrix(const projection::FieldOfView& fov, const projection::ViewPort& view_port,
|
||||||
|
float near, float far) noexcept;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace omath::unity_engine
|
||||||
@@ -7,27 +7,26 @@
|
|||||||
#include "omath/projectile_prediction/target.hpp"
|
#include "omath/projectile_prediction/target.hpp"
|
||||||
#include <optional>
|
#include <optional>
|
||||||
|
|
||||||
namespace omath::projectile_prediction::traits
|
namespace omath::unity_engine
|
||||||
{
|
{
|
||||||
class UnityEngineTrait final
|
class PredEngineTrait final
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
constexpr static Vector3<float> predict_projectile_position(const Projectile& projectile, const float pitch,
|
constexpr static Vector3<float> predict_projectile_position(const projectile_prediction::Projectile& projectile,
|
||||||
const float yaw, const float time,
|
const float pitch, const float yaw,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto current_pos = projectile.m_origin
|
auto current_pos = projectile.m_origin
|
||||||
+ unity_engine::forward_vector({unity_engine::PitchAngle::from_degrees(-pitch),
|
+ forward_vector({PitchAngle::from_degrees(-pitch), YawAngle::from_degrees(yaw),
|
||||||
unity_engine::YawAngle::from_degrees(yaw),
|
RollAngle::from_degrees(0)})
|
||||||
unity_engine::RollAngle::from_degrees(0)})
|
|
||||||
* projectile.m_launch_speed * time;
|
* projectile.m_launch_speed * time;
|
||||||
current_pos.y -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
current_pos.y -= (gravity * projectile.m_gravity_scale) * (time * time) * 0.5f;
|
||||||
|
|
||||||
return current_pos;
|
return current_pos;
|
||||||
}
|
}
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static constexpr Vector3<float> predict_target_position(const Target& target, const float time,
|
static constexpr Vector3<float> predict_target_position(const projectile_prediction::Target& target,
|
||||||
const float gravity) noexcept
|
const float time, const float gravity) noexcept
|
||||||
{
|
{
|
||||||
auto predicted = target.m_origin + target.m_velocity * time;
|
auto predicted = target.m_origin + target.m_velocity * time;
|
||||||
|
|
||||||
@@ -49,7 +48,7 @@ namespace omath::projectile_prediction::traits
|
|||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]]
|
[[nodiscard]]
|
||||||
static Vector3<float> calc_viewpoint_from_angles(const Projectile& projectile,
|
static Vector3<float> calc_viewpoint_from_angles(const projectile_prediction::Projectile& projectile,
|
||||||
Vector3<float> predicted_target_position,
|
Vector3<float> predicted_target_position,
|
||||||
const std::optional<float> projectile_pitch) noexcept
|
const std::optional<float> projectile_pitch) noexcept
|
||||||
{
|
{
|
||||||
@@ -76,4 +75,4 @@ namespace omath::projectile_prediction::traits
|
|||||||
return angles::radians_to_degrees(std::atan2(delta.z, delta.x));
|
return angles::radians_to_degrees(std::atan2(delta.z, delta.x));
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
} // namespace omath::projectile_prediction::traits
|
} // namespace omath::unity_engine
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "engine_traits/source_engine_trait.hpp"
|
#include "omath/engines/source_engine/traits/pred_engine_trait.hpp"
|
||||||
#include "omath/projectile_prediction/proj_pred_engine.hpp"
|
#include "omath/projectile_prediction/proj_pred_engine.hpp"
|
||||||
#include "omath/projectile_prediction/projectile.hpp"
|
#include "omath/projectile_prediction/projectile.hpp"
|
||||||
#include "omath/projectile_prediction/target.hpp"
|
#include "omath/projectile_prediction/target.hpp"
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
|
|
||||||
namespace omath::projectile_prediction
|
namespace omath::projectile_prediction
|
||||||
{
|
{
|
||||||
template<class EngineTrait = traits::SourceEngineTrait>
|
template<class EngineTrait = source_engine::PredEngineTrait>
|
||||||
class ProjPredEngineLegacy final : public ProjPredEngineInterface
|
class ProjPredEngineLegacy final : public ProjPredEngineInterface
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ namespace omath::projection
|
|||||||
};
|
};
|
||||||
using FieldOfView = Angle<float, 0.f, 180.f, AngleFlags::Clamped>;
|
using FieldOfView = Angle<float, 0.f, 180.f, AngleFlags::Clamped>;
|
||||||
|
|
||||||
template<class Mat4X4Type, class ViewAnglesType>
|
template<class Mat4X4Type, class ViewAnglesType, class TraitClass>
|
||||||
class Camera
|
class Camera
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@@ -39,15 +39,16 @@ namespace omath::projection
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
virtual void look_at(const Vector3<float>& target) = 0;
|
void look_at(const Vector3<float>& target)
|
||||||
|
{
|
||||||
[[nodiscard]] virtual Mat4X4Type calc_view_matrix() const noexcept = 0;
|
m_view_angles = TraitClass::calc_look_at_angle(m_origin, target);
|
||||||
|
}
|
||||||
[[nodiscard]] virtual Mat4X4Type calc_projection_matrix() const noexcept = 0;
|
|
||||||
|
|
||||||
[[nodiscard]] Mat4X4Type calc_view_projection_matrix() const noexcept
|
[[nodiscard]] Mat4X4Type calc_view_projection_matrix() const noexcept
|
||||||
{
|
{
|
||||||
return calc_projection_matrix() * calc_view_matrix();
|
return TraitClass::calc_projection_matrix(m_field_of_view, m_view_port, m_near_plane_distance,
|
||||||
|
m_far_plane_distance)
|
||||||
|
* TraitClass::calc_view_matrix(m_view_angles, m_origin);
|
||||||
}
|
}
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|||||||
@@ -1,33 +0,0 @@
|
|||||||
//
|
|
||||||
// Created by Vlad on 3/17/2025.
|
|
||||||
//
|
|
||||||
#include "omath/engines/iw_engine/camera.hpp"
|
|
||||||
#include "omath/engines/iw_engine/formulas.hpp"
|
|
||||||
|
|
||||||
namespace omath::iw_engine
|
|
||||||
{
|
|
||||||
|
|
||||||
Camera::Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, const float near, const float far)
|
|
||||||
: projection::Camera<Mat4X4, ViewAngles>(position, view_angles, view_port, fov, near, far)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Camera::look_at([[maybe_unused]] const Vector3<float>& target)
|
|
||||||
{
|
|
||||||
const float distance = m_origin.distance_to(target);
|
|
||||||
const auto delta = target - m_origin;
|
|
||||||
|
|
||||||
m_view_angles.pitch = PitchAngle::from_radians(std::asin(delta.z / distance));
|
|
||||||
m_view_angles.yaw = -YawAngle::from_radians(std::atan2(delta.y, delta.x));
|
|
||||||
m_view_angles.roll = RollAngle::from_radians(0.f);
|
|
||||||
}
|
|
||||||
Mat4X4 Camera::calc_view_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return iw_engine::calc_view_matrix(m_view_angles, m_origin);
|
|
||||||
}
|
|
||||||
Mat4X4 Camera::calc_projection_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return calc_perspective_projection_matrix(m_field_of_view.as_degrees(), m_view_port.aspect_ratio(),
|
|
||||||
m_near_plane_distance, m_far_plane_distance);
|
|
||||||
}
|
|
||||||
} // namespace omath::iw_engine
|
|
||||||
27
source/engines/iw_engine/traits/camera_trait.cpp
Normal file
27
source/engines/iw_engine/traits/camera_trait.cpp
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/11/2025.
|
||||||
|
//
|
||||||
|
#include "omath/engines/iw_engine/traits/camera_trait.hpp"
|
||||||
|
|
||||||
|
namespace omath::iw_engine
|
||||||
|
{
|
||||||
|
|
||||||
|
ViewAngles CameraTrait::calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept
|
||||||
|
{
|
||||||
|
const auto distance = cam_origin.distance_to(look_at);
|
||||||
|
const auto delta = cam_origin - look_at;
|
||||||
|
|
||||||
|
return {PitchAngle::from_radians(-std::asin(delta.z / distance)),
|
||||||
|
YawAngle::from_radians(std::atan2(delta.y, delta.x)), RollAngle::from_radians(0.f)};
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept
|
||||||
|
{
|
||||||
|
return iw_engine::calc_view_matrix(angles, cam_origin);
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_projection_matrix(const projection::FieldOfView& fov,
|
||||||
|
const projection::ViewPort& view_port, const float near,
|
||||||
|
const float far) noexcept
|
||||||
|
{
|
||||||
|
return calc_perspective_projection_matrix(fov.as_degrees(), view_port.aspect_ratio(), near, far);
|
||||||
|
}
|
||||||
|
} // namespace omath::iw_engine
|
||||||
@@ -1,33 +0,0 @@
|
|||||||
//
|
|
||||||
// Created by Orange on 12/23/2024.
|
|
||||||
//
|
|
||||||
#include "omath/engines/opengl_engine/camera.hpp"
|
|
||||||
#include "omath/engines/opengl_engine/formulas.hpp"
|
|
||||||
|
|
||||||
namespace omath::opengl_engine
|
|
||||||
{
|
|
||||||
|
|
||||||
Camera::Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const Angle<float, 0.f, 180.f, AngleFlags::Clamped>& fov, const float near, const float far)
|
|
||||||
: projection::Camera<Mat4X4, ViewAngles>(position, view_angles, view_port, fov, near, far)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Camera::look_at([[maybe_unused]] const Vector3<float>& target)
|
|
||||||
{
|
|
||||||
const float distance = m_origin.distance_to(target);
|
|
||||||
const auto delta = target - m_origin;
|
|
||||||
|
|
||||||
m_view_angles.pitch = PitchAngle::from_radians(std::asin(delta.z / distance));
|
|
||||||
m_view_angles.yaw = -YawAngle::from_radians(std::atan2(delta.y, delta.x));
|
|
||||||
m_view_angles.roll = RollAngle::from_radians(0.f);
|
|
||||||
}
|
|
||||||
Mat4X4 Camera::calc_view_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return opengl_engine::calc_view_matrix(m_view_angles, m_origin);
|
|
||||||
}
|
|
||||||
Mat4X4 Camera::calc_projection_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return calc_perspective_projection_matrix(m_field_of_view.as_degrees(), m_view_port.aspect_ratio(),
|
|
||||||
m_near_plane_distance, m_far_plane_distance);
|
|
||||||
}
|
|
||||||
} // namespace omath::opengl_engine
|
|
||||||
28
source/engines/opengl_engine/traits/camera_trait.cpp
Normal file
28
source/engines/opengl_engine/traits/camera_trait.cpp
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/11/2025.
|
||||||
|
//
|
||||||
|
#include "omath/engines/opengl_engine/traits/camera_trait.hpp"
|
||||||
|
|
||||||
|
|
||||||
|
namespace omath::opengl_engine
|
||||||
|
{
|
||||||
|
|
||||||
|
ViewAngles CameraTrait::calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept
|
||||||
|
{
|
||||||
|
const auto distance = cam_origin.distance_to(look_at);
|
||||||
|
const auto delta = cam_origin - look_at;
|
||||||
|
|
||||||
|
return {PitchAngle::from_radians(-std::asin(delta.y / distance)),
|
||||||
|
YawAngle::from_radians(std::atan2(delta.z, delta.x)), RollAngle::from_radians(0.f)};
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept
|
||||||
|
{
|
||||||
|
return opengl_engine::calc_view_matrix(angles, cam_origin);
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_projection_matrix(const projection::FieldOfView& fov,
|
||||||
|
const projection::ViewPort& view_port, const float near,
|
||||||
|
const float far) noexcept
|
||||||
|
{
|
||||||
|
return calc_perspective_projection_matrix(fov.as_degrees(), view_port.aspect_ratio(), near, far);
|
||||||
|
}
|
||||||
|
} // namespace omath::opengl_engine
|
||||||
@@ -1,35 +0,0 @@
|
|||||||
//
|
|
||||||
// Created by Orange on 12/4/2024.
|
|
||||||
//
|
|
||||||
#include "omath/engines/source_engine/camera.hpp"
|
|
||||||
#include "omath/engines/source_engine/formulas.hpp"
|
|
||||||
|
|
||||||
namespace omath::source_engine
|
|
||||||
{
|
|
||||||
|
|
||||||
Camera::Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const projection::FieldOfView& fov, const float near, const float far)
|
|
||||||
: projection::Camera<Mat4X4, ViewAngles>(position, view_angles, view_port, fov, near, far)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Camera::look_at(const Vector3<float>& target)
|
|
||||||
{
|
|
||||||
const float distance = m_origin.distance_to(target);
|
|
||||||
const auto delta = target - m_origin;
|
|
||||||
|
|
||||||
m_view_angles.pitch = PitchAngle::from_radians(std::asin(delta.z / distance));
|
|
||||||
m_view_angles.yaw = -YawAngle::from_radians(std::atan2(delta.y, delta.x));
|
|
||||||
m_view_angles.roll = RollAngle::from_radians(0.f);
|
|
||||||
}
|
|
||||||
|
|
||||||
Mat4X4 Camera::calc_view_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return source_engine::calc_view_matrix(m_view_angles, m_origin);
|
|
||||||
}
|
|
||||||
|
|
||||||
Mat4X4 Camera::calc_projection_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return calc_perspective_projection_matrix(m_field_of_view.as_degrees(), m_view_port.aspect_ratio(),
|
|
||||||
m_near_plane_distance, m_far_plane_distance);
|
|
||||||
}
|
|
||||||
} // namespace omath::source_engine
|
|
||||||
27
source/engines/source_engine/traits/camera_trait.cpp
Normal file
27
source/engines/source_engine/traits/camera_trait.cpp
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/11/2025.
|
||||||
|
//
|
||||||
|
#include "omath/engines/source_engine/traits/camera_trait.hpp"
|
||||||
|
|
||||||
|
namespace omath::source_engine
|
||||||
|
{
|
||||||
|
|
||||||
|
ViewAngles CameraTrait::calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept
|
||||||
|
{
|
||||||
|
const auto distance = cam_origin.distance_to(look_at);
|
||||||
|
const auto delta = cam_origin - look_at;
|
||||||
|
|
||||||
|
return {PitchAngle::from_radians(-std::asin(delta.z / distance)),
|
||||||
|
YawAngle::from_radians(std::atan2(delta.y, delta.x)), RollAngle::from_radians(0.f)};
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept
|
||||||
|
{
|
||||||
|
return source_engine::calc_view_matrix(angles, cam_origin);
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_projection_matrix(const projection::FieldOfView& fov,
|
||||||
|
const projection::ViewPort& view_port, const float near,
|
||||||
|
const float far) noexcept
|
||||||
|
{
|
||||||
|
return calc_perspective_projection_matrix(fov.as_degrees(), view_port.aspect_ratio(), near, far);
|
||||||
|
}
|
||||||
|
} // namespace omath::source_engine
|
||||||
@@ -1,27 +0,0 @@
|
|||||||
//
|
|
||||||
// Created by Vlad on 3/22/2025.
|
|
||||||
//
|
|
||||||
#include <omath/engines/unity_engine/camera.hpp>
|
|
||||||
#include <omath/engines/unity_engine/formulas.hpp>
|
|
||||||
|
|
||||||
namespace omath::unity_engine
|
|
||||||
{
|
|
||||||
Camera::Camera(const Vector3<float>& position, const ViewAngles& view_angles, const projection::ViewPort& view_port,
|
|
||||||
const projection::FieldOfView& fov, const float near, const float far)
|
|
||||||
: projection::Camera<Mat4X4, ViewAngles>(position, view_angles, view_port, fov, near, far)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
void Camera::look_at([[maybe_unused]] const Vector3<float>& target)
|
|
||||||
{
|
|
||||||
throw std::runtime_error("Not implemented");
|
|
||||||
}
|
|
||||||
Mat4X4 Camera::calc_view_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return unity_engine::calc_view_matrix(m_view_angles, m_origin);
|
|
||||||
}
|
|
||||||
Mat4X4 Camera::calc_projection_matrix() const noexcept
|
|
||||||
{
|
|
||||||
return calc_perspective_projection_matrix(m_field_of_view.as_degrees(), m_view_port.aspect_ratio(),
|
|
||||||
m_near_plane_distance, m_far_plane_distance);
|
|
||||||
}
|
|
||||||
} // namespace omath::unity_engine
|
|
||||||
27
source/engines/unity_engine/traits/camera_trait.cpp
Normal file
27
source/engines/unity_engine/traits/camera_trait.cpp
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
//
|
||||||
|
// Created by Vlad on 8/11/2025.
|
||||||
|
//
|
||||||
|
#include "omath/engines/unity_engine/traits/camera_trait.hpp"
|
||||||
|
|
||||||
|
namespace omath::unity_engine
|
||||||
|
{
|
||||||
|
|
||||||
|
ViewAngles CameraTrait::calc_look_at_angle(const Vector3<float>& cam_origin, const Vector3<float>& look_at) noexcept
|
||||||
|
{
|
||||||
|
const auto distance = cam_origin.distance_to(look_at);
|
||||||
|
const auto delta = cam_origin - look_at;
|
||||||
|
|
||||||
|
return {PitchAngle::from_radians(-std::asin(delta.y / distance)),
|
||||||
|
YawAngle::from_radians(std::atan2(delta.z, delta.x)), RollAngle::from_radians(0.f)};
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_view_matrix(const ViewAngles& angles, const Vector3<float>& cam_origin) noexcept
|
||||||
|
{
|
||||||
|
return unity_engine::calc_view_matrix(angles, cam_origin);
|
||||||
|
}
|
||||||
|
Mat4X4 CameraTrait::calc_projection_matrix(const projection::FieldOfView& fov,
|
||||||
|
const projection::ViewPort& view_port, const float near,
|
||||||
|
const float far) noexcept
|
||||||
|
{
|
||||||
|
return calc_perspective_projection_matrix(fov.as_degrees(), view_port.aspect_ratio(), near, far);
|
||||||
|
}
|
||||||
|
} // namespace omath::unity_engine
|
||||||
Reference in New Issue
Block a user