isle/LEGO1/viewmanager/viewmanager.h

37 lines
934 B
C
Raw Normal View History

#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 {
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();
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);
void Update(float p_previousRenderTime, float p_und2);
2024-01-13 14:58:10 -05:00
// SYNTHETIC: LEGO1 0x100a6000
// ViewManager::`scalar deleting destructor'
inline CompoundObject& GetUnknown0x08() { return m_unk0x08; }
inline void AddToUnknown0x08(ViewROI* p_roi) { m_unk0x08.push_back(p_roi); }
2024-01-13 14:58:10 -05:00
private:
undefined4 m_unk0x04; // 0x04
CompoundObject m_unk0x08; // 0x08
undefined m_pad[0x1a8]; // 0x14
};
// TEMPLATE: LEGO1 0x10022030
// list<ROI *,allocator<ROI *> >::insert
#endif // VIEWMANAGER_H