2009-09-08 12:08:10 +00:00
|
|
|
/* PCSX2 - PS2 Emulator for PCs
|
2010-05-03 14:08:02 +00:00
|
|
|
* Copyright (C) 2002-2010 PCSX2 Dev Team
|
2010-04-25 00:31:27 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU Lesser General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
2009-07-07 20:53:32 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* PCSX2 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.
|
2009-07-07 20:53:32 +00:00
|
|
|
*
|
2009-09-08 12:08:10 +00:00
|
|
|
* You should have received a copy of the GNU General Public License along with PCSX2.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
2009-07-07 20:53:32 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <wx/image.h>
|
|
|
|
#include <wx/mstream.h>
|
|
|
|
#include <wx/gdicmn.h>
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Interface for loadable embedded images. See EmbeddedImage description for details.
|
|
|
|
//
|
|
|
|
class IEmbeddedImage
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
virtual const wxImage& Get()=0;
|
2015-09-07 16:58:36 +00:00
|
|
|
virtual wxImage Scale( int width, int height )=0;
|
2009-07-07 20:53:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// EmbeddedImage - Helper class for loading images which have been embedded into the binary
|
|
|
|
// manifest of the executable file. Images are only loaded when Get() is called,
|
|
|
|
// which allows this type to be passed to functions as a fallback or default action without
|
|
|
|
// incurring an unnecessary memory footprint.
|
|
|
|
//
|
|
|
|
// Note: Get() only loads the image once. All subsequent calls to Get will use the
|
|
|
|
// previously loaded image data.
|
|
|
|
//
|
|
|
|
template< typename ImageType >
|
|
|
|
class EmbeddedImage : public IEmbeddedImage
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
wxImage m_Image;
|
|
|
|
const wxSize m_ResampleTo;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Internal function used to ensure the image is loaded before returning the image
|
|
|
|
// handle (called from all methods that return an image handle).
|
|
|
|
//
|
|
|
|
void _loadImage()
|
|
|
|
{
|
|
|
|
if( !m_Image.Ok() )
|
|
|
|
{
|
|
|
|
wxMemoryInputStream joe( ImageType::Data, ImageType::Length );
|
|
|
|
m_Image.LoadFile( joe, ImageType::GetFormat() );
|
|
|
|
|
|
|
|
if( m_ResampleTo.IsFullySpecified() && ( m_ResampleTo.GetWidth() != m_Image.GetWidth() || m_ResampleTo.GetHeight() != m_Image.GetHeight() ) )
|
2015-09-07 16:58:36 +00:00
|
|
|
m_Image.Rescale( m_ResampleTo.GetWidth(), m_ResampleTo.GetHeight(), wxIMAGE_QUALITY_HIGH );
|
2009-07-07 20:53:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public:
|
|
|
|
EmbeddedImage() :
|
|
|
|
m_Image()
|
|
|
|
, m_ResampleTo( wxDefaultSize )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Constructor for creating an embedded image that gets resampled to the specified size when
|
|
|
|
// loaded.
|
|
|
|
//
|
|
|
|
// Implementation Note: This function uses wxWidgets ResamplBox method to resize the image.
|
|
|
|
// wxWidgets ResampleBicubic appears to be buggy and produces fairly poor results when down-
|
|
|
|
// sampling images (basically resembles a pixel resize). ResampleBox produces much cleaner
|
|
|
|
// results.
|
|
|
|
//
|
|
|
|
EmbeddedImage( int newWidth, int newHeight ) :
|
|
|
|
m_Image()
|
|
|
|
, m_ResampleTo( newWidth, newHeight )
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Loads and retrieves the embedded image. The embedded image is only loaded from its em-
|
|
|
|
// bedded format once. Any subsequent calls to Get(), Rescale(), or Resample() will use
|
|
|
|
// the pre-loaded copy. Translation: the png/jpeg decoding overhead happens only once,
|
|
|
|
// and only happens when the image is actually fetched. Simply creating an instance
|
|
|
|
// of an EmbeddedImage object uses no excess memory nor cpu overhead. :)
|
|
|
|
//
|
|
|
|
const wxImage& Get()
|
|
|
|
{
|
|
|
|
_loadImage();
|
|
|
|
return m_Image;
|
|
|
|
}
|
|
|
|
|
2009-09-08 16:39:37 +00:00
|
|
|
wxIcon GetIcon()
|
|
|
|
{
|
|
|
|
wxIcon retval;
|
|
|
|
retval.CopyFromBitmap( Get() );
|
|
|
|
return retval;
|
|
|
|
}
|
|
|
|
|
2009-07-07 20:53:32 +00:00
|
|
|
// ------------------------------------------------------------------------
|
|
|
|
// Performs a pixel resize of the loaded image and returns a new image handle (EmbeddedImage
|
2015-09-07 16:58:36 +00:00
|
|
|
// is left unmodified).
|
2009-07-07 20:53:32 +00:00
|
|
|
//
|
|
|
|
|
2015-09-07 16:58:36 +00:00
|
|
|
wxImage Scale( int width, int height )
|
2009-07-07 20:53:32 +00:00
|
|
|
{
|
|
|
|
_loadImage();
|
2015-09-07 16:58:36 +00:00
|
|
|
// Not strictly necessary - wxWidgets does the dimensions check anyway.
|
2009-07-07 20:53:32 +00:00
|
|
|
if( width != m_Image.GetWidth() || height != m_Image.GetHeight() )
|
2015-09-07 16:58:36 +00:00
|
|
|
return m_Image.Scale( width, height, wxIMAGE_QUALITY_HIGH );
|
2009-07-07 20:53:32 +00:00
|
|
|
else
|
|
|
|
return m_Image;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|