vectozavr-shooter/engine/Camera.h

43 lines
1008 B
C
Raw Normal View History

2021-09-13 15:53:43 +03:00
//
// Created by Иван Ильин on 14.01.2021.
//
#ifndef ENGINE_CAMERA_H
#define ENGINE_CAMERA_H
#include <vector>
#include "Screen.h"
#include "Plane.h"
#include "Mesh.h"
2021-10-02 20:36:07 +03:00
class Camera : public Object{
2021-09-13 15:53:43 +03:00
private:
Matrix4x4 _S; // screen space matrix
Matrix4x4 _P; // projections matrix
Matrix4x4 _V; // camera matrix
2021-09-13 15:53:43 +03:00
// To accelerate calculations we can use precalculated matrix that does not chance
Matrix4x4 _SP; // screen-space-projections matrix
2021-09-13 15:53:43 +03:00
2021-10-02 20:36:07 +03:00
std::vector<Triangle> _triangles{};
std::vector<Plane> _clipPlanes{};
2021-09-13 15:53:43 +03:00
bool _ready = false;
2021-10-02 20:36:07 +03:00
double _aspect = 0;
2021-09-13 15:53:43 +03:00
public:
Camera() = default;
Camera(const Camera& camera) = delete;
void init(int width, int height, double fov = 110.0, double ZNear = 0.1, double ZFar = 5000.0);
std::vector<Triangle>& project(std::shared_ptr<Mesh> mesh);
2021-09-13 15:53:43 +03:00
void clear();
2021-09-13 15:53:43 +03:00
[[nodiscard]] int buffSize() const { return _triangles.size(); }
2021-09-13 15:53:43 +03:00
std::vector<Triangle>& sorted();
};
#endif //INC_3DZAVR_CAMERA_H