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"
|
2013-10-09 10:30:33 +00:00
|
|
|
#include "sharedstate.h"
|
2013-09-03 13:22:00 +00:00
|
|
|
#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-06 10:26:41 +00:00
|
|
|
typedef QQueue<TEXFBO> ObjList;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
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
|
|
|
|
{
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO obj;
|
|
|
|
QLinkedList<TEXFBO>::iterator prioIter;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
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 */
|
2013-09-06 10:26:41 +00:00
|
|
|
QLinkedList<TEXFBO> priorityQueue;
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
/* 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())
|
|
|
|
{
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO obj = p->priorityQueue.takeFirst();
|
|
|
|
TEXFBO::fini(obj);
|
2013-09-01 14:27:21 +00:00
|
|
|
--p->objCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
Q_ASSERT(p->objCount == 0);
|
|
|
|
|
|
|
|
delete p;
|
|
|
|
}
|
|
|
|
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO TexPool::request(int width, int height)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
|
|
|
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.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 */
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO::init(cobj.obj);
|
|
|
|
TEXFBO::allocEmpty(cobj.obj, width, height);
|
|
|
|
TEXFBO::linkFBO(cobj.obj);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
|
|
|
// qDebug() << "TexPool: <?-> (" << width << height << ")";
|
|
|
|
|
|
|
|
return cobj.obj;
|
|
|
|
}
|
|
|
|
|
2013-09-06 10:26:41 +00:00
|
|
|
void TexPool::release(TEXFBO &obj)
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-09-06 10:26:41 +00:00
|
|
|
if (obj.tex == TEX::ID(0) || obj.fbo == FBO::ID(0))
|
2013-09-01 14:27:21 +00:00
|
|
|
{
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO::fini(obj);
|
2013-09-01 14:27:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p->disabled)
|
|
|
|
{
|
|
|
|
/* If we're disabled, delete without caching */
|
|
|
|
// qDebug() << "TexPool: <!#> (" << obj.width << obj.height << ")";
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO::fini(obj);
|
2013-09-01 14:27:21 +00:00
|
|
|
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();
|
|
|
|
|
2013-09-06 10:26:41 +00:00
|
|
|
TEXFBO::fini(last.obj);
|
2013-09-01 14:27:21 +00:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|