2023-06-11 21:03:54 -04:00
|
|
|
#ifndef VIEWMANAGER_H
|
|
|
|
#define VIEWMANAGER_H
|
|
|
|
|
2024-01-10 17:40:24 -05:00
|
|
|
#include "viewroi.h"
|
2023-06-18 08:02:16 -04:00
|
|
|
|
2024-01-10 17:40:24 -05:00
|
|
|
// VTABLE: LEGO1 0x100dbd88
|
|
|
|
// SIZE 0x1bc
|
2023-10-24 19:38:27 -04:00
|
|
|
class ViewManager {
|
2023-06-11 21:03:54 -04:00
|
|
|
public:
|
2024-01-13 14:58:10 -05:00
|
|
|
ViewManager(Tgl::Renderer* pRenderer, Tgl::Group* scene, const OrientableROI* point_of_view);
|
2024-01-10 17:40:24 -05:00
|
|
|
virtual ~ViewManager();
|
|
|
|
|
2023-10-24 19:38:27 -04:00
|
|
|
__declspec(dllexport) void RemoveAll(ViewROI*);
|
2024-01-10 17:40:24 -05:00
|
|
|
|
|
|
|
void SetPOVSource(const OrientableROI* point_of_view);
|
2024-01-13 14:58:10 -05:00
|
|
|
void SetResolution(int width, int height);
|
|
|
|
void SetFrustrum(float fov, float front, float back);
|
|
|
|
|
2024-01-18 08:34:14 -05:00
|
|
|
// SYNTHETIC: LEGO1 0x100a6000
|
|
|
|
// ViewManager::`scalar deleting destructor'
|
|
|
|
|
2024-01-13 14:58:10 -05:00
|
|
|
private:
|
|
|
|
undefined m_pad[0x1b8];
|
2023-06-11 21:03:54 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // VIEWMANAGER_H
|