mirror of https://github.com/PCSX2/pcsx2.git
143 lines
3.3 KiB
C++
143 lines
3.3 KiB
C++
/*
|
|
* Copyright (C) 2007-2009 Gabest
|
|
* http://www.gabest.org
|
|
*
|
|
* This Program 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 2, or (at your option)
|
|
* any later version.
|
|
*
|
|
* This Program 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 GNU Make; see the file COPYING. If not, write to
|
|
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "GSRenderer.h"
|
|
|
|
class GSTextureCache
|
|
{
|
|
public:
|
|
enum {RenderTarget, DepthStencil};
|
|
|
|
enum TextureFormatType
|
|
{
|
|
FMT_32,
|
|
FMT_24,
|
|
FMT_16,
|
|
FMT_8H,
|
|
FMT_4HL,
|
|
FMT_4HH,
|
|
FMT_8,
|
|
};
|
|
|
|
class Surface : public GSAlignedClass<16>
|
|
{
|
|
protected:
|
|
GSRenderer* m_renderer;
|
|
|
|
public:
|
|
GSTexture* m_texture;
|
|
GIFRegTEX0 m_TEX0;
|
|
GIFRegTEXA m_TEXA;
|
|
int m_age;
|
|
|
|
public:
|
|
explicit Surface(GSRenderer* r);
|
|
virtual ~Surface();
|
|
|
|
virtual void Update();
|
|
};
|
|
|
|
class Source : public Surface
|
|
{
|
|
struct {GSVector4i* rect; uint32 count;} m_write;
|
|
|
|
void Write(const GSVector4i& r);
|
|
void Flush(uint32 count);
|
|
|
|
public:
|
|
GSTexture* m_palette;
|
|
bool m_initpalette;
|
|
uint32 m_valid[MAX_PAGES]; // each uint32 bits map to the 32 blocks of that page
|
|
uint32* m_clut;
|
|
int m_fmt;
|
|
bool m_target;
|
|
bool m_complete;
|
|
|
|
public:
|
|
explicit Source(GSRenderer* r);
|
|
virtual ~Source();
|
|
|
|
virtual void Update(const GIFRegTEX0& TEX0, const GIFRegTEXA& TEXA, const GSVector4i& rect);
|
|
};
|
|
|
|
class Target : public Surface
|
|
{
|
|
public:
|
|
int m_type;
|
|
bool m_used;
|
|
GSDirtyRectList m_dirty;
|
|
GSVector4i m_valid;
|
|
|
|
public:
|
|
explicit Target(GSRenderer* r);
|
|
|
|
virtual void Update();
|
|
};
|
|
|
|
protected:
|
|
GSRenderer* m_renderer;
|
|
bool m_paltex;
|
|
|
|
struct SourceMap
|
|
{
|
|
hash_set<Source*> m_surfaces;
|
|
list<Source*> m_map[MAX_PAGES];
|
|
uint32 m_pages[16];
|
|
bool m_used;
|
|
|
|
SourceMap() : m_used(false) {memset(m_pages, 0, sizeof(m_pages));}
|
|
|
|
void Add(Source* s, const GIFRegTEX0& TEX0, const GSOffset* o);
|
|
void RemoveAll();
|
|
void RemoveAt(Source* s);
|
|
|
|
} m_src;
|
|
|
|
list<Target*> m_dst[2];
|
|
|
|
virtual Source* CreateSource(const GIFRegTEX0& TEX0, const GIFRegTEXA& TEXA, Target* t = NULL);
|
|
virtual Target* CreateTarget(const GIFRegTEX0& TEX0, int w, int h, int type);
|
|
|
|
virtual int Get8bitFormat() = 0;
|
|
|
|
// TODO: virtual void Write(Source* s, const GSVector4i& r) = 0;
|
|
// TODO: virtual void Write(Target* t, const GSVector4i& r) = 0;
|
|
virtual void Read(Target* t, const GSVector4i& r) = 0;
|
|
|
|
public:
|
|
GSTextureCache(GSRenderer* r);
|
|
virtual ~GSTextureCache();
|
|
|
|
void RemoveAll();
|
|
|
|
Source* LookupSource(const GIFRegTEX0& TEX0, const GIFRegTEXA& TEXA, const GSVector4i& r);
|
|
Target* LookupTarget(const GIFRegTEX0& TEX0, int w, int h, int type, bool used);
|
|
Target* LookupTarget(const GIFRegTEX0& TEX0, int w, int h);
|
|
|
|
void InvalidateVideoMem(const GSOffset* o, const GSVector4i& r, bool target = true);
|
|
void InvalidateLocalMem(const GSOffset* o, const GSVector4i& r);
|
|
|
|
void IncAge();
|
|
bool UserHacks_HalfPixelOffset;
|
|
};
|