2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
// GC graphics pipeline
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
// 3d commands are issued through the fifo. The gpu draws to the 2MB EFB.
|
|
|
|
// The efb can be copied back into ram in two forms: as textures or as XFB.
|
|
|
|
// The XFB is the region in RAM that the VI chip scans out to the television.
|
|
|
|
// So, after all rendering to EFB is done, the image is copied into one of two XFBs in RAM.
|
|
|
|
// Next frame, that one is scanned out and the other one gets the copy. = double buffering.
|
|
|
|
// ---------------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#ifndef _COMMON_RENDERBASE_H_
|
|
|
|
#define _COMMON_RENDERBASE_H_
|
|
|
|
|
|
|
|
#include "VideoCommon.h"
|
|
|
|
#include "Thread.h"
|
|
|
|
#include "MathUtil.h"
|
|
|
|
#include "NativeVertexFormat.h"
|
|
|
|
#include "FramebufferManagerBase.h"
|
|
|
|
#include "BPMemory.h"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
// TODO: Move these out of here.
|
|
|
|
extern int frameCount;
|
2012-12-31 15:21:23 +00:00
|
|
|
extern int OSDChoice;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-09-08 13:39:03 +00:00
|
|
|
extern bool bLastFrameDumped;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
// Renderer really isn't a very good name for this class - it's more like "Misc".
|
|
|
|
// The long term goal is to get rid of this class and replace it with others that make
|
|
|
|
// more sense.
|
|
|
|
class Renderer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Renderer();
|
|
|
|
virtual ~Renderer();
|
|
|
|
|
2012-05-29 11:54:20 +00:00
|
|
|
enum PixelPerfQuery {
|
|
|
|
PP_ZCOMP_INPUT_ZCOMPLOC,
|
|
|
|
PP_ZCOMP_OUTPUT_ZCOMPLOC,
|
|
|
|
PP_ZCOMP_INPUT,
|
|
|
|
PP_ZCOMP_OUTPUT,
|
|
|
|
PP_BLEND_INPUT,
|
|
|
|
PP_EFB_COPY_CLOCKS
|
|
|
|
};
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
virtual void SetColorMask() = 0;
|
|
|
|
virtual void SetBlendMode(bool forceUpdate) = 0;
|
2011-09-05 20:04:28 +00:00
|
|
|
virtual void SetScissorRect(const TargetRectangle& rc) = 0;
|
2010-11-18 02:21:26 +00:00
|
|
|
virtual void SetGenerationMode() = 0;
|
|
|
|
virtual void SetDepthMode() = 0;
|
|
|
|
virtual void SetLogicOpMode() = 0;
|
|
|
|
virtual void SetDitherMode() = 0;
|
|
|
|
virtual void SetLineWidth() = 0;
|
|
|
|
virtual void SetSamplerState(int stage,int texindex) = 0;
|
|
|
|
virtual void SetInterlacingMode() = 0;
|
|
|
|
|
2012-08-10 16:57:37 +00:00
|
|
|
virtual void ApplyState(bool bUseDstAlpha) = 0;
|
2012-03-29 23:56:24 +00:00
|
|
|
virtual void RestoreState() = 0;
|
2011-01-24 08:44:32 +00:00
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// Ideal internal resolution - determined by display resolution (automatic scaling) and/or a multiple of the native EFB resolution
|
|
|
|
static int GetTargetWidth() { return s_target_width; }
|
|
|
|
static int GetTargetHeight() { return s_target_height; }
|
|
|
|
|
|
|
|
// Display resolution
|
|
|
|
static int GetBackbufferWidth() { return s_backbuffer_width; }
|
|
|
|
static int GetBackbufferHeight() { return s_backbuffer_height; }
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-03-15 23:09:12 +00:00
|
|
|
static void SetWindowSize(int width, int height);
|
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// EFB coordinate conversion functions
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// Use this to convert a whole native EFB rect to backbuffer coordinates
|
2010-11-18 02:21:26 +00:00
|
|
|
virtual TargetRectangle ConvertEFBRectangle(const EFBRectangle& rc) = 0;
|
|
|
|
|
2012-09-28 22:04:55 +00:00
|
|
|
static const TargetRectangle& GetTargetRectangle() { return target_rc; }
|
2013-01-16 20:46:11 +00:00
|
|
|
static void UpdateDrawRectangle(int backbuffer_width, int backbuffer_height);
|
2012-09-28 22:04:55 +00:00
|
|
|
|
|
|
|
|
2010-12-10 15:54:14 +00:00
|
|
|
// Use this to upscale native EFB coordinates to IDEAL internal resolution
|
2012-10-02 20:11:15 +00:00
|
|
|
static int EFBToScaledX(int x);
|
|
|
|
static int EFBToScaledY(int y);
|
2010-12-10 15:54:14 +00:00
|
|
|
|
|
|
|
// Floating point versions of the above - only use them if really necessary
|
2010-12-25 00:25:15 +00:00
|
|
|
static float EFBToScaledXf(float x) { return x * ((float)GetTargetWidth() / (float)EFB_WIDTH); }
|
|
|
|
static float EFBToScaledYf(float y) { return y * ((float)GetTargetHeight() / (float)EFB_HEIGHT); }
|
2010-12-10 15:54:14 +00:00
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
// Random utilities
|
|
|
|
static void SetScreenshot(const char *filename);
|
|
|
|
static void DrawDebugText();
|
|
|
|
|
|
|
|
virtual void RenderText(const char* pstr, int left, int top, u32 color) = 0;
|
|
|
|
|
2010-12-19 22:00:25 +00:00
|
|
|
virtual void ClearScreen(const EFBRectangle& rc, bool colorEnable, bool alphaEnable, bool zEnable, u32 color, u32 z) = 0;
|
2010-12-27 21:56:20 +00:00
|
|
|
virtual void ReinterpretPixelData(unsigned int convtype) = 0;
|
2010-12-27 03:18:01 +00:00
|
|
|
static void RenderToXFB(u32 xfbAddr, u32 fbWidth, u32 fbHeight, const EFBRectangle& sourceRc,float Gamma = 1.0f);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
virtual u32 AccessEFB(EFBAccessType type, u32 x, u32 y, u32 poke_data) = 0;
|
|
|
|
|
|
|
|
// What's the real difference between these? Too similar names.
|
|
|
|
virtual void ResetAPIState() = 0;
|
|
|
|
virtual void RestoreAPIState() = 0;
|
|
|
|
|
|
|
|
// Finish up the current frame, print some stats
|
2010-12-27 03:18:01 +00:00
|
|
|
virtual void Swap(u32 xfbAddr, FieldType field, u32 fbWidth, u32 fbHeight, const EFBRectangle& rc,float Gamma = 1.0f) = 0;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-05-12 02:14:45 +00:00
|
|
|
virtual void UpdateViewport(Matrix44& vpCorrection) = 0;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
virtual bool SaveScreenshot(const std::string &filename, const TargetRectangle &rc) = 0;
|
|
|
|
|
2010-12-27 21:56:20 +00:00
|
|
|
static unsigned int GetPrevPixelFormat() { return prev_efb_format; }
|
|
|
|
static void StorePixelFormat(unsigned int new_format) { prev_efb_format = new_format; }
|
|
|
|
|
2011-01-31 01:28:32 +00:00
|
|
|
// TODO: doesn't belong here
|
|
|
|
virtual void SetPSConstant4f(unsigned int const_number, float f1, float f2, float f3, float f4) = 0;
|
|
|
|
virtual void SetPSConstant4fv(unsigned int const_number, const float *f) = 0;
|
|
|
|
virtual void SetMultiPSConstant4fv(unsigned int const_number, unsigned int count, const float *f) = 0;
|
|
|
|
|
|
|
|
// TODO: doesn't belong here
|
|
|
|
virtual void SetVSConstant4f(unsigned int const_number, float f1, float f2, float f3, float f4) = 0;
|
|
|
|
virtual void SetVSConstant4fv(unsigned int const_number, const float *f) = 0;
|
|
|
|
virtual void SetMultiVSConstant3fv(unsigned int const_number, unsigned int count, const float *f) = 0;
|
|
|
|
virtual void SetMultiVSConstant4fv(unsigned int const_number, unsigned int count, const float *f) = 0;
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
protected:
|
|
|
|
|
2011-01-07 04:57:59 +00:00
|
|
|
static void CalculateTargetScale(int x, int y, int &scaledX, int &scaledY);
|
2013-01-16 20:46:11 +00:00
|
|
|
static bool CalculateTargetSize(unsigned int framebuffer_width, unsigned int framebuffer_height, int multiplier = 1);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
2011-03-27 02:55:08 +00:00
|
|
|
static void CheckFifoRecording();
|
|
|
|
static void RecordVideoMemory();
|
|
|
|
|
2010-11-18 02:21:26 +00:00
|
|
|
static volatile bool s_bScreenshot;
|
2011-09-08 15:09:24 +00:00
|
|
|
static std::mutex s_criticalScreenshot;
|
|
|
|
static std::string s_sScreenshotName;
|
|
|
|
|
|
|
|
#if defined _WIN32 || defined HAVE_LIBAV
|
|
|
|
bool bAVIDumping;
|
|
|
|
#else
|
|
|
|
File::IOFile pFrameDump;
|
|
|
|
#endif
|
2013-02-27 01:47:48 +00:00
|
|
|
std::vector<u8> frame_data;
|
2011-09-08 15:09:24 +00:00
|
|
|
bool bLastFrameDumped;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
// The framebuffer size
|
|
|
|
static int s_target_width;
|
|
|
|
static int s_target_height;
|
|
|
|
|
|
|
|
// TODO: Add functionality to reinit all the render targets when the window is resized.
|
|
|
|
static int s_backbuffer_width;
|
|
|
|
static int s_backbuffer_height;
|
|
|
|
|
2012-09-28 22:04:55 +00:00
|
|
|
static TargetRectangle target_rc;
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
// can probably eliminate this static var
|
|
|
|
static int s_LastEFBScale;
|
|
|
|
|
|
|
|
static bool s_skipSwap;
|
|
|
|
static bool XFBWrited;
|
2010-12-27 21:56:20 +00:00
|
|
|
|
2011-03-27 02:55:08 +00:00
|
|
|
static bool s_EnableDLCachingAfterRecording;
|
|
|
|
|
2010-12-27 21:56:20 +00:00
|
|
|
private:
|
|
|
|
static unsigned int prev_efb_format;
|
2012-10-02 20:11:15 +00:00
|
|
|
static unsigned int efb_scale_numeratorX;
|
|
|
|
static unsigned int efb_scale_numeratorY;
|
|
|
|
static unsigned int efb_scale_denominatorX;
|
|
|
|
static unsigned int efb_scale_denominatorY;
|
|
|
|
static unsigned int ssaa_multiplier;
|
2010-11-18 02:21:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Renderer *g_renderer;
|
|
|
|
|
2011-05-12 02:14:45 +00:00
|
|
|
void UpdateViewport(Matrix44& vpCorrection);
|
2010-11-18 02:21:26 +00:00
|
|
|
|
|
|
|
#endif // _COMMON_RENDERBASE_H_
|