1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
#include "SharedImage.h"
#include "MemoryImage.h"
#include "DDImage.h"
#include "SexyAppBase.h"
using namespace Sexy;
SharedImage::SharedImage()
{
mImage = NULL;
mRefCount = 0;
}
SharedImageRef::SharedImageRef(const SharedImageRef& theSharedImageRef)
{
mSharedImage = theSharedImageRef.mSharedImage;
if (mSharedImage != NULL)
mSharedImage->mRefCount++;
mUnsharedImage = theSharedImageRef.mUnsharedImage;
mOwnsUnshared = false;
}
SharedImageRef::SharedImageRef()
{
mSharedImage = NULL;
mUnsharedImage = NULL;
mOwnsUnshared = false;
}
SharedImageRef::SharedImageRef(SharedImage* theSharedImage)
{
mSharedImage = theSharedImage;
if (theSharedImage != NULL)
mSharedImage->mRefCount++;
mUnsharedImage = NULL;
mOwnsUnshared = false;
}
SharedImageRef::~SharedImageRef()
{
Release();
}
void SharedImageRef::Release()
{
if (mOwnsUnshared)
delete mUnsharedImage;
mUnsharedImage = NULL;
if (mSharedImage != NULL)
{
if (--mSharedImage->mRefCount == 0)
gSexyAppBase->mCleanupSharedImages = true;
}
mSharedImage = NULL;
}
SharedImageRef& SharedImageRef::operator=(const SharedImageRef& theSharedImageRef)
{
Release();
mSharedImage = theSharedImageRef.mSharedImage;
if (mSharedImage != NULL)
mSharedImage->mRefCount++;
return *this;
}
SharedImageRef& SharedImageRef::operator=(SharedImage* theSharedImage)
{
Release();
mSharedImage = theSharedImage;
mSharedImage->mRefCount++;
return *this;
}
SharedImageRef& SharedImageRef::operator=(MemoryImage* theUnsharedImage)
{
Release();
mUnsharedImage = theUnsharedImage;
return *this;
}
MemoryImage* SharedImageRef::operator->()
{
return (MemoryImage*) *this;
}
SharedImageRef::operator Image*()
{
return (MemoryImage*) *this;
}
SharedImageRef::operator MemoryImage*()
{
if (mUnsharedImage != NULL)
return mUnsharedImage;
else
return (DDImage*) *this;
}
SharedImageRef::operator DDImage*()
{
if (mSharedImage != NULL)
return mSharedImage->mImage;
else
return NULL;
}
|