mkxp-freebird/src/texpool.cpp

212 lines
4.6 KiB
C++
Raw Normal View History

2013-09-01 14:27:21 +00:00
/*
** texpool.cpp
**
** This file is part of mkxp.
**
** Copyright (C) 2013 Jonas Kulla <Nyocurio@gmail.com>
**
** mkxp 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 of the License, or
** (at your option) any later version.
**
** mkxp 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 mkxp. If not, see <http://www.gnu.org/licenses/>.
*/
#include "texpool.h"
2013-09-03 13:22:00 +00:00
#include "exception.h"
#include "globalstate.h"
#include "glstate.h"
2013-09-01 14:27:21 +00:00
#include <QHash>
#include <QQueue>
#include <QList>
#include <QLinkedList>
#include <QPair>
#include <QDebug>
2013-09-04 11:30:14 +00:00
typedef QPair<uint16_t, uint16_t> Size;
2013-09-01 14:27:21 +00:00
typedef QQueue<TexFBO> ObjList;
2013-09-04 11:30:14 +00:00
static uint32_t byteCount(Size &s)
2013-09-01 14:27:21 +00:00
{
return s.first * s.second * 4;
}
struct CacheObject
{
TexFBO obj;
QLinkedList<TexFBO>::iterator prioIter;
bool operator==(const CacheObject &o)
{
return obj == o.obj;
}
};
typedef QList<CacheObject> CObjList;
struct TexPoolPrivate
{
/* Contains all cached TexFBOs, grouped by size */
QHash<Size, CObjList> poolHash;
/* Contains all cached TexFBOs, sorted by release time */
QLinkedList<TexFBO> priorityQueue;
/* Maximal allowed cache memory */
2013-09-04 11:30:14 +00:00
const uint32_t maxMemSize;
2013-09-01 14:27:21 +00:00
/* Current amound of memory consumed by the cache */
2013-09-04 11:30:14 +00:00
uint32_t memSize;
2013-09-01 14:27:21 +00:00
/* Current amount of TexFBOs cached */
2013-09-04 11:30:14 +00:00
uint16_t objCount;
2013-09-01 14:27:21 +00:00
/* Has this pool been disabled? */
bool disabled;
2013-09-04 11:30:14 +00:00
TexPoolPrivate(uint32_t maxMemSize)
2013-09-01 14:27:21 +00:00
: maxMemSize(maxMemSize),
memSize(0),
objCount(0),
disabled(false)
{}
};
2013-09-04 11:30:14 +00:00
TexPool::TexPool(uint32_t maxMemSize)
2013-09-01 14:27:21 +00:00
{
p = new TexPoolPrivate(maxMemSize);
}
TexPool::~TexPool()
{
while (!p->priorityQueue.isEmpty())
{
TexFBO obj = p->priorityQueue.takeFirst();
TexFBO::fini(obj);
--p->objCount;
}
Q_ASSERT(p->objCount == 0);
delete p;
}
TexFBO TexPool::request(int width, int height)
{
CacheObject cobj;
Size size(width, height);
/* See if we can statisfy request from cache */
CObjList &bucket = p->poolHash[size];
if (!bucket.isEmpty())
{
/* Found one! */
cobj = bucket.takeLast();
//p->priorityQueue.removeOne(obj);
p->priorityQueue.erase(cobj.prioIter);
p->memSize -= byteCount(size);
--p->objCount;
// qDebug() << "TexPool: <?+> (" << width << height << ")";
return cobj.obj;
}
2013-09-03 13:22:00 +00:00
int maxSize = glState.caps.maxTexSize;
if (width > maxSize || height > maxSize)
throw Exception(Exception::MKXPError,
2013-09-03 14:47:53 +00:00
"Texture dimensions [%s, %s] exceed hardware capabilities",
QByteArray::number(width), QByteArray::number(height));
2013-09-01 14:27:21 +00:00
/* Nope, create it instead */
TexFBO::init(cobj.obj);
TexFBO::allocEmpty(cobj.obj, width, height);
TexFBO::linkFBO(cobj.obj);
// qDebug() << "TexPool: <?-> (" << width << height << ")";
return cobj.obj;
}
void TexPool::release(TexFBO &obj)
{
if (obj.tex == Tex::ID(0) || obj.fbo == FBO::ID(0))
{
TexFBO::fini(obj);
return;
}
if (p->disabled)
{
/* If we're disabled, delete without caching */
// qDebug() << "TexPool: <!#> (" << obj.width << obj.height << ")";
TexFBO::fini(obj);
return;
}
Size size(obj.width, obj.height);
2013-09-04 11:30:14 +00:00
uint32_t newMemSize = p->memSize + byteCount(size);
2013-09-01 14:27:21 +00:00
/* If caching this object would spill over the allowed memory budget,
* delete least used objects until we're good again */
while (newMemSize > p->maxMemSize)
{
if (p->objCount == 0)
break;
// qDebug() << "TexPool: <!~> Size:" << p->memSize;
/* Retrieve object with lowest priority for deletion */
CacheObject last;
last.obj = p->priorityQueue.last();
Size removedSize(last.obj.width, last.obj.height);
CObjList &bucket = p->poolHash[removedSize];
Q_ASSERT(bucket.contains(last));
bucket.removeOne(last);
p->priorityQueue.removeLast();
TexFBO::fini(last.obj);
2013-09-04 11:30:14 +00:00
uint32_t removedMem = byteCount(removedSize);
2013-09-01 14:27:21 +00:00
newMemSize -= removedMem;
p->memSize -= removedMem;
--p->objCount;
// qDebug() << "TexPool: <!-> (" << last.obj.tex << last.obj.fbo << ")";
}
/* Retain object */
p->priorityQueue.prepend(obj);
CacheObject cobj;
cobj.obj = obj;
cobj.prioIter = p->priorityQueue.begin();
CObjList &bucket = p->poolHash[size];
bucket.append(cobj);
p->memSize += byteCount(size);
++p->objCount;
// qDebug() << "TexPool: <!+> (" << obj.width << obj.height << ") Current size:" << p->memSize;
}
void TexPool::disable()
{
p->disabled = true;
}