summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-05-25 14:29:02 +0300
committerAndrei Karas <akaras@inbox.ru>2013-05-25 14:44:17 +0300
commit7ab9e9e8df1d4be921eef4085ded6aaa876f0cd3 (patch)
tree12a2c7c13b4dd2a233bbc851f65941572924edc2
parent5fc3bb811e26b88a65e88206b56ea1475c8ee92f (diff)
downloadplus-7ab9e9e8df1d4be921eef4085ded6aaa876f0cd3.tar.gz
plus-7ab9e9e8df1d4be921eef4085ded6aaa876f0cd3.tar.bz2
plus-7ab9e9e8df1d4be921eef4085ded6aaa876f0cd3.tar.xz
plus-7ab9e9e8df1d4be921eef4085ded6aaa876f0cd3.zip
temp fix for text particle effects in software mode.
-rw-r--r--src/gui/sdlfont.cpp57
-rw-r--r--src/gui/sdlfont.h1
2 files changed, 46 insertions, 12 deletions
diff --git a/src/gui/sdlfont.cpp b/src/gui/sdlfont.cpp
index 7df00260a..0d285ad1d 100644
--- a/src/gui/sdlfont.cpp
+++ b/src/gui/sdlfont.cpp
@@ -181,7 +181,6 @@ void SDLTextChunk::generate(TTF_Font *const font, const float alpha)
static_cast<Uint16>(surface->w),
static_cast<Uint16>(surface->h)
};
-// SDL_SetAlpha(surface2, 0, SDL_ALPHA_OPAQUE);
MSDL_gfxBlitRGBA(surface2, nullptr, background, &rect);
rect.x = -OUTLINE_SIZE;
MSDL_gfxBlitRGBA(surface2, nullptr, background, &rect);
@@ -192,7 +191,6 @@ void SDLTextChunk::generate(TTF_Font *const font, const float alpha)
MSDL_gfxBlitRGBA(surface2, nullptr, background, &rect);
rect.x = 0;
rect.y = 0;
-// SDL_SetAlpha(surface, 0, SDL_ALPHA_OPAQUE);
MSDL_gfxBlitRGBA(surface, nullptr, background, &rect);
SDL_FreeSurface(surface);
SDL_FreeSurface(surface2);
@@ -320,6 +318,7 @@ SDLFont::SDLFont(std::string filename,
mFont(nullptr),
mCreateCounter(0),
mDeleteCounter(0),
+ mOpengl(imageHelper->useOpenGL()),
mCleanTime(cur_time + CLEAN_TIME)
{
const ResourceManager *const resman = ResourceManager::getInstance();
@@ -436,22 +435,56 @@ void SDLFont::drawString(gcn::Graphics *const graphics,
const unsigned char chr = text[0];
TextChunkList *const cache = &mCache[chr];
- std::map<SDLTextChunkSmall, SDLTextChunk*> &search = cache->search;
- std::map<SDLTextChunkSmall, SDLTextChunk*>::iterator i
- = search.find(SDLTextChunkSmall(text, col, col2));
- if (i != search.end())
+ if (!mOpengl)
{
- SDLTextChunk *const chunk2 = (*i).second;
- cache->moveToFirst(chunk2);
- Image *const image = chunk2->img;
- if (image)
+ bool found(false);
+ SDLTextChunk chunk(text, col, col2);
+ SDLTextChunk *i1 = cache->start;
+ while (i1)
{
- image->setAlpha(alpha);
- g->drawImage(image, x, y);
+ if (*i1 == chunk)
+ {
+ cache->moveToFirst(i1);
+ found = true;
+ break;
+ }
+ i1 = i1->next;
+ }
+
+ if (found)
+ {
+ Image *const image = cache->start->img;
+ if (image)
+ {
+ image->setAlpha(alpha);
+ g->drawImage(image, x, y);
+ }
+ BLOCK_END("SDLFont::drawString")
+ return;
}
}
else
{
+ std::map<SDLTextChunkSmall, SDLTextChunk*> &search = cache->search;
+ std::map<SDLTextChunkSmall, SDLTextChunk*>::iterator i
+ = search.find(SDLTextChunkSmall(text, col, col2));
+ if (i != search.end())
+ {
+ SDLTextChunk *const chunk2 = (*i).second;
+
+ cache->moveToFirst(chunk2);
+ Image *const image = chunk2->img;
+ if (image)
+ {
+ image->setAlpha(alpha);
+ g->drawImage(image, x, y);
+ }
+ BLOCK_END("SDLFont::drawString")
+ return;
+ }
+ }
+// else
+ {
if (cache->size >= CACHE_SIZE)
{
#ifdef DEBUG_FONT_COUNTERS
diff --git a/src/gui/sdlfont.h b/src/gui/sdlfont.h
index 09b93f87a..52d617518 100644
--- a/src/gui/sdlfont.h
+++ b/src/gui/sdlfont.h
@@ -155,6 +155,7 @@ class SDLFont final : public gcn::Font
TTF_Font *mFont;
unsigned mCreateCounter;
unsigned mDeleteCounter;
+ bool mOpengl;
// Word surfaces cache
int mCleanTime;