2016-03-21 04:10:14 +00:00
/**
* * Supermodel
* * A Sega Model 3 Arcade Emulator .
* * Copyright 2011 Bart Trzynadlowski , Nik Henson
* *
* * This file is part of Supermodel .
* *
* * Supermodel is free software : you can redistribute it and / or modify it under
* * the terms of the GNU General Public License as published by the Free
* * Software Foundation , either version 3 of the License , or ( at your option )
* * any later version .
* *
* * Supermodel is distributed in the hope that it will be useful , but WITHOUT
* * ANY WARRANTY ; without even the implied warranty of MERCHANTABILITY or
* * FITNESS FOR A PARTICULAR PURPOSE . See the GNU General Public License for
* * more details .
* *
* * You should have received a copy of the GNU General Public License along
* * with Supermodel . If not , see < http : //www.gnu.org/licenses/>.
* */
/*
* New3D . h
*
* Header file defining the CNew3D class : OpenGL Real3D graphics engine .
*/
# ifndef INCLUDED_NEW3D_H
# define INCLUDED_NEW3D_H
# include "Pkgs/glew.h"
# include "Types.h"
# include "TextureSheet.h"
# include "Graphics/IRender3D.h"
# include "Model.h"
# include "Mat4.h"
# include "R3DShader.h"
# include "VBO.h"
2016-03-28 20:11:46 +00:00
# include "R3DData.h"
2016-06-16 20:05:29 +00:00
# include "Plane.h"
# include "Vec.h"
2016-10-09 16:34:12 +00:00
# include "R3DScrollFog.h"
2016-12-06 14:39:46 +00:00
# include "PolyHeader.h"
2016-03-21 04:10:14 +00:00
namespace New3D {
class CNew3D : public IRender3D
{
public :
/*
* RenderFrame ( void ) :
*
* Renders the complete scene database . Must be called between BeginFrame ( ) and
* EndFrame ( ) . This function traverses the scene database and builds up display
* lists .
*/
void RenderFrame ( void ) ;
/*
* BeginFrame ( void ) :
*
* Prepare to render a new frame . Must be called once per frame prior to
* drawing anything .
*/
void BeginFrame ( void ) ;
/*
* EndFrame ( void ) :
*
* Signals the end of rendering for this frame . Must be called last during
* the frame .
*/
void EndFrame ( void ) ;
/*
* UploadTextures ( x , y , width , height ) :
*
* Signals that a portion of texture RAM has been updated .
*
* Parameters :
* x X position within texture RAM .
* y Y position within texture RAM .
* width Width of texture data in texels .
* height Height .
*/
2017-03-25 00:06:24 +00:00
void UploadTextures ( unsigned level , unsigned x , unsigned y , unsigned width , unsigned height ) ;
2016-03-21 04:10:14 +00:00
/*
* AttachMemory ( cullingRAMLoPtr , cullingRAMHiPtr , polyRAMPtr , vromPtr ,
* textureRAMPtr ) :
*
* Attaches RAM and ROM areas . This must be done prior to any rendering
* otherwise the program may crash with an access violation .
*
* Parameters :
* cullingRAMLoPtr Pointer to low culling RAM ( 4 MB ) .
* cullingRAMHiPtr Pointer to high culling RAM ( 1 MB ) .
* polyRAMPtr Pointer to polygon RAM ( 4 MB ) .
* vromPtr Pointer to video ROM ( 64 MB ) .
* textureRAMPtr Pointer to texture RAM ( 8 MB ) .
*/
void AttachMemory ( const UINT32 * cullingRAMLoPtr ,
const UINT32 * cullingRAMHiPtr , const UINT32 * polyRAMPtr ,
const UINT32 * vromPtr , const UINT16 * textureRAMPtr ) ;
/*
2017-03-27 03:19:15 +00:00
* SetStepping ( stepping ) :
2016-03-21 04:10:14 +00:00
*
* Sets the Model 3 hardware stepping , which also determines the Real3D
* functionality . The default is Step 1.0 . This should be called prior to
* any other emulation functions and after Init ( ) .
*
* Parameters :
2017-03-27 03:19:15 +00:00
* stepping 0x10 for Step 1.0 , 0x15 for Step 1.5 , 0x20 for Step 2.0 , or
* 0x21 for Step 2.1 . Anything else defaults to 1.0 .
2016-03-21 04:10:14 +00:00
*/
2017-03-27 03:19:15 +00:00
void SetStepping ( int stepping ) ;
2016-03-21 04:10:14 +00:00
/*
* Init ( xOffset , yOffset , xRes , yRes , totalXRes , totalYRes ) :
*
* One - time initialization of the context . Must be called before any other
* members ( meaning it should be called even before being attached to any
* other objects that want to use it ) .
*
* External shader files are loaded according to configuration settings .
*
* Parameters :
* xOffset X offset of the viewable area within OpenGL display
* surface , in pixels .
* yOffset Y offset .
* xRes Horizontal resolution of the viewable area .
* yRes Vertical resolution .
* totalXRes Horizontal resolution of the complete display area .
* totalYRes Vertical resolution .
*
* Returns :
* OKAY is successful , otherwise FAILED if a non - recoverable error
* occurred . Any allocated memory will not be freed until the
* destructor is called . Prints own error messages .
*/
bool Init ( unsigned xOffset , unsigned yOffset , unsigned xRes , unsigned yRes , unsigned totalXRes , unsigned totalYRes ) ;
2017-09-02 14:54:16 +00:00
/*
* SetSunClamp ( bool enable ) ;
*
* Sets or unsets the clamped light model
*
* Parameters :
* enable Set clamp mode
*/
2018-01-15 21:27:21 +00:00
void SetSunClamp ( bool enable ) ;
/*
* SetSignedShade ( bool enable ) ;
*
* Sets the sign - ness of fixed shading value
*
* Parameters :
* enable Fixed shading is expressed as signed value
*/
void SetSignedShade ( bool enable ) ;
/*
* CRender3D ( config ) :
* ~ CRender3D ( void ) :
*
2016-03-21 04:10:14 +00:00
* Constructor and destructor .
2017-08-11 00:41:10 +00:00
*
* Parameters :
* config Run - time configuration .
2016-03-21 04:10:14 +00:00
*/
2017-08-15 23:21:57 +00:00
CNew3D ( const Util : : Config : : Node & config , std : : string gameName ) ;
2016-03-21 04:10:14 +00:00
~ CNew3D ( void ) ;
private :
/*
* Private Members
*/
// Real3D address translation
const UINT32 * TranslateCullingAddress ( UINT32 addr ) ;
const UINT32 * TranslateModelAddress ( UINT32 addr ) ;
// Matrix stack
void MultMatrix ( UINT32 matrixOffset , Mat4 & mat ) ;
void InitMatrixStack ( UINT32 matrixBaseAddr , Mat4 & mat ) ;
// Scene database traversal
bool DrawModel ( UINT32 modelAddr ) ;
void DescendCullingNode ( UINT32 addr ) ;
void DescendPointerList ( UINT32 addr ) ;
void DescendNodePtr ( UINT32 nodeAddr ) ;
2016-04-19 22:05:12 +00:00
void RenderViewport ( UINT32 addr ) ;
2016-03-21 04:10:14 +00:00
// building the scene
2016-12-06 12:25:34 +00:00
void SetMeshValues ( SortingMesh * currentMesh , PolyHeader & ph ) ;
2016-03-21 04:10:14 +00:00
void CacheModel ( Model * m , const UINT32 * data ) ;
2016-05-07 15:28:04 +00:00
void CopyVertexData ( const R3DPoly & r3dPoly , std : : vector < Poly > & polyArray ) ;
2016-05-09 16:26:34 +00:00
void OffsetTexCoords ( R3DPoly & r3dPoly , float offset [ 2 ] ) ;
2016-03-21 04:10:14 +00:00
2017-02-20 17:22:32 +00:00
bool RenderScene ( int priority , bool renderOverlay , bool alpha ) ; // returns if has overlay plane
2016-03-22 13:47:28 +00:00
float Determinant3x3 ( const float m [ 16 ] ) ;
2017-02-20 17:22:32 +00:00
bool IsDynamicModel ( UINT32 * data ) ; // check if the model has a colour palette
2016-03-26 22:44:26 +00:00
bool IsVROMModel ( UINT32 modelAddr ) ;
2016-10-09 16:34:12 +00:00
void DrawScrollFog ( ) ;
2016-03-26 22:44:26 +00:00
2016-06-19 21:43:09 +00:00
void CalcTexOffset ( int offX , int offY , int page , int x , int y , int & newX , int & newY ) ;
2016-03-21 04:10:14 +00:00
/*
* Data
*/
2018-01-15 21:27:21 +00:00
// Misc
std : : string m_gameName ;
// GPU configuration
bool m_sunClamp ;
bool m_shadeIsSigned ;
// Stepping
int m_step ;
2016-03-21 04:10:14 +00:00
int m_offset ; // offset to subtract for words 3 and higher of culling nodes
float m_vertexFactor ; // fixed-point conversion factor for vertices
// Memory (passed from outside)
const UINT32 * m_cullingRAMLo ; // 4 MB
const UINT32 * m_cullingRAMHi ; // 1 MB
const UINT32 * m_polyRAM ; // 4 MB
const UINT32 * m_vrom ; // 64 MB
const UINT16 * m_textureRAM ; // 8 MB
// Resolution and scaling factors (to support resolutions higher than 496x384) and offsets
float m_xRatio , m_yRatio ;
unsigned m_xOffs , m_yOffs ;
unsigned m_totalXRes , m_totalYRes ;
// Real3D Base Matrix Pointer
const float * m_matrixBasePtr ;
2016-05-18 23:06:41 +00:00
UINT32 m_colorTableAddr = 0x400 ; // address of color table in polygon RAM
2017-04-17 10:40:07 +00:00
LODBlendTable * m_LODBlendTable ;
2016-03-21 04:10:14 +00:00
TextureSheet m_texSheet ;
NodeAttributes m_nodeAttribs ;
2016-03-26 22:44:26 +00:00
Mat4 m_modelMat ; // current modelview matrix
2016-03-21 04:10:14 +00:00
2016-03-26 22:44:26 +00:00
std : : vector < Node > m_nodes ; // this represents the entire render frame
std : : vector < Poly > m_polyBufferRam ; // dynamic polys
std : : vector < Poly > m_polyBufferRom ; // rom polys
std : : unordered_map < UINT32 , std : : shared_ptr < std : : vector < Mesh > > > m_romMap ; // a hash table for all the ROM models. The meshes don't have model matrices or tex offsets yet
2016-03-21 04:10:14 +00:00
2016-03-26 22:44:26 +00:00
VBO m_vbo ; // large VBO to hold our poly data, start of VBO is ROM data, ram polys follow
2016-03-21 04:10:14 +00:00
R3DShader m_r3dShader ;
2016-10-09 16:34:12 +00:00
R3DScrollFog m_r3dScrollFog ;
2016-06-16 20:05:29 +00:00
2016-12-22 22:09:13 +00:00
Plane m_planes [ 4 ] ;
2016-06-16 20:05:29 +00:00
struct BBox
{
V4 : : Vec4 points [ 8 ] ;
} ;
2017-02-07 14:05:03 +00:00
struct NFPair
{
float zNear ;
float zFar ;
} ;
NFPair m_nfPairs [ 4 ] ;
int m_currentPriority ;
2016-12-22 22:11:19 +00:00
void CalcFrustumPlanes ( Plane p [ 4 ] , const float * matrix ) ;
2016-06-16 20:05:29 +00:00
void CalcBox ( float distance , BBox & box ) ;
void TransformBox ( const float * m , BBox & box ) ;
void MultVec ( const float matrix [ 16 ] , const float in [ 4 ] , float out [ 4 ] ) ;
2016-12-22 22:11:19 +00:00
Clip ClipBox ( BBox & box , Plane planes [ 4 ] ) ;
2017-02-07 14:05:03 +00:00
void ClipModel ( const Model * m ) ;
void ClipPolygon ( ClipPoly & clipPoly , Plane planes [ 4 ] ) ;
void CalcBoxExtents ( const BBox & box ) ;
void CalcViewport ( Viewport * vp , float near , float far ) ;
2016-03-21 04:10:14 +00:00
} ;
} // New3D
# endif // INCLUDED_NEW3D_H