mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 23:57:54 -05:00
b996fff6fa
* cmake: detect older MSVC and define ENABLE_DECOMP_ASSERTS to enable decomp asserts * Add /Zc:__cplusplus to define __cplusplus with c++ version number * Silence deprecated CRT releated warnings * LegoCameraController overrids some methods that are not defined in its parent(s) * Tgl::Device::GetDrawnTriangleCount does not exist (FIXME: INCORRECT FIX -> Tgl::Device should be updated instead) * Remove copy/pasted APP_ICON from lego1 resource.h header * Implement empty ViewLODList::Dump method * Also enable "compat mode" for newer MSVC compilers * Only do decomp assertions when using older MSVC compilers * msys2 mingw compat (cannot pass reference of rvalue) * Fix msys2 mingw warning: declaration 'class Tgl::Group' does not declare anything * Add FIXME comment to LEgo3DView::m_previousRenderTime * LegoView1 is 16 bytes bigger then LegoView ==> 4 32-bit pointers * include string.h for strlen * Fix overrides * Fix constness of method * Fixes * Formatting * Add size assert for MxFrequencyMeter * ci: build isle with msys2 + msvc on GitHub actions * Set vcvars for msvc * msys2 needs the msys2 shell * Build in default shell * isle is not 64-bit yet (I think) * Print bitness * Use amd64_x64 cross tools * Minor updates * Add more names --------- Co-authored-by: Christian Semmler <mail@csemmler.com>
90 lines
2.6 KiB
C++
90 lines
2.6 KiB
C++
#ifndef _TglSurface_h
|
|
#define _TglSurface_h
|
|
|
|
#include "mxdirectx/mxstopwatch.h"
|
|
#include "tgl/tgl.h"
|
|
|
|
namespace Tgl
|
|
{
|
|
class Renderer;
|
|
class Device;
|
|
class View;
|
|
class Group;
|
|
} // namespace Tgl
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// TglSurface
|
|
|
|
// VTABLE: LEGO1 0x100dc060
|
|
// SIZE 0x70
|
|
class TglSurface {
|
|
public:
|
|
// SIZE 0x28
|
|
struct CreateStruct {
|
|
const GUID* m_pDriverGUID; // 0x00
|
|
HWND m_hWnd; // 0x04
|
|
IDirectDraw* m_pDirectDraw; // 0x08
|
|
IDirectDrawSurface* m_pFrontBuffer; // 0x0c
|
|
IDirectDrawSurface* m_pBackBuffer; // 0x10
|
|
IDirectDrawPalette* m_pPalette; // 0x14
|
|
BOOL m_isFullScreen; // 0x18
|
|
BOOL m_isWideViewAngle; // 0x1c
|
|
IDirect3D2* m_direct3d; // 0x20
|
|
IDirect3DDevice2* m_d3dDevice; // 0x24
|
|
};
|
|
|
|
public:
|
|
TglSurface();
|
|
virtual ~TglSurface();
|
|
|
|
virtual BOOL Create(const CreateStruct&, Tgl::Renderer*, Tgl::Group* pScene); // vtable+0x04
|
|
virtual void Destroy(); // vtable+0x08
|
|
virtual double Render(); // render time in seconds // vtable+0x0c
|
|
|
|
Tgl::Renderer* GetRenderer() const { return m_pRenderer; }
|
|
Tgl::Device* GetDevice() const { return m_pDevice; }
|
|
Tgl::View* GetView() const { return m_pView; }
|
|
Tgl::Group* GetScene() const { return m_pScene; }
|
|
|
|
unsigned long GetWidth() const { return m_width; }
|
|
unsigned long GetHeight() const { return m_height; }
|
|
|
|
double GetRenderingRate() const { return m_renderingRateMeter.Frequency(); }
|
|
double GetFrameRate() const { return m_frameRateMeter.Frequency(); }
|
|
unsigned long GetFrameCount() const { return m_frameCount; }
|
|
#ifdef _DEBUG
|
|
double GetTriangleRate() const { return m_triangleRateMeter.Frequency(); }
|
|
#endif
|
|
|
|
protected:
|
|
virtual Tgl::View* CreateView(Tgl::Renderer*, Tgl::Device*) = 0; // vtable+0x10
|
|
virtual void DestroyView(); // vtable+0x14
|
|
|
|
private:
|
|
Tgl::Renderer* m_pRenderer; // 0x08
|
|
Tgl::Device* m_pDevice; // 0x0c
|
|
Tgl::View* m_pView; // 0x10
|
|
Tgl::Group* m_pScene; // 0x14
|
|
|
|
unsigned long m_width; // 0x18
|
|
unsigned long m_height; // 0x1c
|
|
|
|
BOOL m_isInitialized; // 0x20
|
|
BOOL m_stopRendering; // 0x24
|
|
|
|
// statistics
|
|
MxFrequencyMeter m_renderingRateMeter; // 0x28
|
|
MxFrequencyMeter m_frameRateMeter; // 0x48
|
|
unsigned long m_frameCount; // 0x68
|
|
#ifdef _DEBUG
|
|
MxFrequencyMeter m_triangleRateMeter;
|
|
unsigned long m_triangleCount;
|
|
#endif
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// SYNTHETIC: LEGO1 0x100abcf0
|
|
// TglSurface::`scalar deleting destructor'
|
|
|
|
#endif /* _TglSurface_h */
|