Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | File List | Namespace Members | Class Members | File Members | Related Pages

pgsurfacecache.h

Go to the documentation of this file.
00001 /*
00002     ParaGUI - crossplatform widgetset
00003     Copyright (C) 2000,2001,2002  Alexander Pipelka
00004  
00005     This library is free software; you can redistribute it and/or
00006     modify it under the terms of the GNU Library General Public
00007     License as published by the Free Software Foundation; either
00008     version 2 of the License, or (at your option) any later version.
00009  
00010     This library is distributed in the hope that it will be useful,
00011     but WITHOUT ANY WARRANTY; without even the implied warranty of
00012     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00013     Library General Public License for more details.
00014  
00015     You should have received a copy of the GNU Library General Public
00016     License along with this library; if not, write to the Free
00017     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
00018  
00019     Alexander Pipelka
00020     pipelka@teleweb.at
00021  
00022     Last Update:      $Author: mbickel $
00023     Update Date:      $Date: 2007-04-13 16:15:57 $
00024     Source File:      $Source: /home/cvspsrv/cvsroot/games/asc/source/libs/paragui/include/pgsurfacecache.h,v $
00025     CVS/RCS Revision: $Revision: 1.2 $
00026     Status:           $State: Exp $
00027 */
00028 
00033 #ifndef PG_SURFACECACHE_H
00034 #define PG_SURFACECACHE_H
00035 
00036 #include "paragui.h"
00037 #include "pgcolor.h"
00038 #include "pgdraw.h"
00039 #include <string>
00040 
00041 typedef struct {
00042         int refcount;
00043         SDL_Surface* surface;
00044         std::string key;
00045 }
00046 pg_surface_cache_t;
00047 
00048 
00057 class DECLSPEC PG_SurfaceCache {
00058 public:
00059 
00060         PG_SurfaceCache();
00061 
00062         virtual ~PG_SurfaceCache();
00063 
00080         void CreateKey(std::string &key, Uint16 w, Uint16 h,
00081                        PG_Gradient* gradient, SDL_Surface* background,
00082                        PG_Draw::BkMode bkmode, Uint8 blend);
00083 
00089         SDL_Surface* FindSurface(const std::string &key);
00090 
00105         SDL_Surface* AddSurface(const std::string &key, SDL_Surface* surface);
00106 
00116         void DeleteSurface(SDL_Surface* surface, bool bDeleteIfNotExists = true);
00117 
00122         void IncRef(const std::string &key);
00123 
00125         void Cleanup();
00126 
00127 private:
00128 
00129         DLLLOCAL pg_surface_cache_t* FindByKey(const std::string &key);
00130 
00131         DLLLOCAL pg_surface_cache_t* FindBySurface(SDL_Surface* surface);
00132 
00133         void* my_surfacemap;
00134         void* my_surfacemap_index;
00135 };
00136 
00137 #endif  // SURFACECACHE_H

Generated on Tue Jun 24 01:27:49 2008 for Advanced Strategic Command by  doxygen 1.4.2