[721] | 1 | |
---|
| 2 | #include "IMGTexture.h" |
---|
| 3 | |
---|
[731] | 4 | namespace IMG |
---|
| 5 | { |
---|
[721] | 6 | |
---|
[731] | 7 | Texture::Texture(): references(0) // initialize references to 0 |
---|
| 8 | { |
---|
| 9 | mTexture = 0; |
---|
| 10 | mWidth = 0; |
---|
| 11 | mHeight = 0; |
---|
| 12 | mMaterial = 0; |
---|
| 13 | mCalculatedAvgColour = false; |
---|
| 14 | mRectangle2D = new Ogre::Rectangle2D(true); |
---|
| 15 | mRectangle2D->setBoundingBox(Ogre::AxisAlignedBox(-100000.0 * Ogre::Vector3::UNIT_SCALE, 100000.0 * Ogre::Vector3::UNIT_SCALE));
|
---|
| 16 | mRectangle2D->setRenderQueueGroup(Ogre::RENDER_QUEUE_OVERLAY); |
---|
| 17 | } |
---|
[721] | 18 | |
---|
[731] | 19 | Texture::~Texture() |
---|
| 20 | { |
---|
| 21 | // Gametools -- BUG: 06/04/2006 |
---|
| 22 | //if (mRectangle2D) |
---|
| 23 | //{ |
---|
| 24 | // delete mRectangle2D; |
---|
| 25 | //} |
---|
[721] | 26 | |
---|
[731] | 27 | //if (mMaterial) |
---|
| 28 | //{ |
---|
| 29 | // delete mMaterial; |
---|
| 30 | //} |
---|
| 31 | } |
---|
[721] | 32 | |
---|
[751] | 33 | void Texture::debug() |
---|
| 34 | { |
---|
| 35 | unsigned char* pBufferBox = new unsigned char[mTexture->getBuffer(0, 0)->getSizeInBytes()];
|
---|
| 36 |
|
---|
| 37 | // Read pixels
|
---|
| 38 | Ogre::PixelBox pBox(mWidth, mHeight, 1, mPixelFormat, pBufferBox);
|
---|
| 39 |
|
---|
| 40 | mTexture->getBuffer(0, 0)->blitToMemory(pBox);
|
---|
| 41 |
|
---|
| 42 | if (mPixelFormat == Ogre::PF_FLOAT32_RGBA)
|
---|
| 43 | {
|
---|
| 44 | imdebug("rgba w=%d h=%d %p b=32f",pBox.getWidth(), pBox.getHeight(), pBox.data);
|
---|
| 45 | } |
---|
| 46 | |
---|
| 47 | if (mPixelFormat == Ogre::PF_A8R8G8B8)
|
---|
| 48 | {
|
---|
| 49 | //unsigned char* pBufferDest = new unsigned char[pBox.getWidth()*pBox.getHeight()*4];
|
---|
| 50 | unsigned char* pBufferDest = new unsigned char[pBox.getWidth()*pBox.getHeight()*4];
|
---|
| 51 | Ogre::PixelBox pDest(mWidth, mHeight, 1, Ogre::PF_BYTE_RGBA, pBufferDest);
|
---|
| 52 | Ogre::PixelUtil::bulkPixelConversion(pBox.data, mPixelFormat, pDest.data, Ogre::PF_BYTE_RGBA, pBox.getWidth()*pBox.getHeight());
|
---|
| 53 |
|
---|
| 54 | imdebug("rgba w=%d h=%d %p ", pDest.getWidth(), pDest.getHeight(), pDest.data);
|
---|
| 55 |
|
---|
| 56 | delete [] pBufferDest;
|
---|
| 57 | } |
---|
| 58 | |
---|
| 59 | delete [] pBufferBox; |
---|
| 60 | } |
---|
| 61 | |
---|
[745] | 62 | void Texture::setRenderTargetListener(Ogre::RenderTargetListener *renderTargetListener) |
---|
| 63 | { |
---|
| 64 | mTexture->getBuffer(0, 0)->getRenderTarget()->addListener(renderTargetListener); |
---|
| 65 | } |
---|
| 66 | |
---|
[731] | 67 | Ogre::Rectangle2D* Texture::getRectangle2D() |
---|
| 68 | { |
---|
| 69 | return mRectangle2D; |
---|
| 70 | } |
---|
[721] | 71 | |
---|
[731] | 72 | void Texture::setCorners(Ogre::Real left, Ogre::Real top, Ogre::Real right, Ogre::Real bottom) |
---|
| 73 | { |
---|
| 74 | mRectangle2D->setCorners(left, top, right, bottom); |
---|
| 75 | } |
---|
[721] | 76 | |
---|
[731] | 77 | void Texture::bind(Ogre::String textureName) |
---|
| 78 | { |
---|
| 79 | if (!Ogre::TextureManager::getSingleton().getByName(textureName).isNull()) |
---|
[721] | 80 | { |
---|
[731] | 81 | mTexture = (Ogre::Texture*) Ogre::TextureManager::getSingleton().getByName(textureName).getPointer(); |
---|
| 82 | mWidth = mTexture->getSrcWidth(); |
---|
| 83 | mHeight = mTexture->getSrcHeight(); |
---|
[721] | 84 | } |
---|
[731] | 85 | else |
---|
[721] | 86 | { |
---|
[731] | 87 | Ogre::TexturePtr tPtr = Ogre::TextureManager::getSingleton().load(textureName, Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME); |
---|
[721] | 88 | |
---|
[731] | 89 | mTexture = (Ogre::Texture*) tPtr.getPointer(); |
---|
| 90 | mWidth = mTexture->getSrcWidth(); |
---|
| 91 | mHeight = mTexture->getSrcHeight(); |
---|
[721] | 92 | } |
---|
[731] | 93 | } |
---|
[721] | 94 | |
---|
[731] | 95 | void Texture::setBackgroundColour(Ogre::ColourValue colour) |
---|
| 96 | { |
---|
| 97 | mBackgroundColour = colour; |
---|
| 98 | } |
---|
[721] | 99 | |
---|
[731] | 100 | Ogre::ColourValue Texture::getBackgroundColour() |
---|
| 101 | { |
---|
| 102 | return mBackgroundColour; |
---|
| 103 | } |
---|
[721] | 104 | |
---|
[731] | 105 | Ogre::ColourValue Texture::getAvgColour() |
---|
| 106 | { |
---|
| 107 | if (mCalculatedAvgColour) |
---|
[721] | 108 | { |
---|
[731] | 109 | return mAvgColour; |
---|
[721] | 110 | } |
---|
[731] | 111 | else |
---|
[721] | 112 | { |
---|
[731] | 113 | calculateAvgColour(); |
---|
| 114 | return mAvgColour; |
---|
[721] | 115 | } |
---|
[731] | 116 | } |
---|
[721] | 117 | |
---|
[731] | 118 | void Texture::calculateAvgColour() |
---|
| 119 | { |
---|
| 120 | unsigned int cR = 0;
|
---|
| 121 | unsigned int cG = 0;
|
---|
| 122 | unsigned int cB = 0;
|
---|
| 123 | unsigned int cA = 0;
|
---|
[721] | 124 | |
---|
[731] | 125 | Ogre::Image img;
|
---|
| 126 | img.load(mTexture->getName(), Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME);
|
---|
| 127 | unsigned char* data = static_cast<unsigned char*>(img.getData());
|
---|
| 128 |
|
---|
| 129 | unsigned int nColorpixels = 1;
|
---|
| 130 |
|
---|
| 131 | for (unsigned int i = 0; i < mTexture->getWidth() * mTexture->getHeight() * 4; i=i+4)
|
---|
| 132 | {
|
---|
| 133 | cA = (unsigned short int)data[i+3];
|
---|
| 134 | if (cA != 0)
|
---|
| 135 | {
|
---|
| 136 | cB = cB + data[i+2];
|
---|
| 137 | cG = cG + data[i+1];
|
---|
| 138 | cR = cR + data[i];
|
---|
| 139 |
|
---|
| 140 | nColorpixels++;
|
---|
| 141 | //Ogre::LogManager::getSingleton().logMessage("(" + Ogre::StringConverter::toString(data[i]) + "," + Ogre::StringConverter::toString(data[i+1]) + "," + Ogre::StringConverter::toString(data[i+2]) + "," + Ogre::StringConverter::toString(data[i+3]) + ")");
|
---|
| 142 | }
|
---|
| 143 | }
|
---|
| 144 |
|
---|
| 145 | cR = cR / nColorpixels;
|
---|
| 146 | cG = cG / nColorpixels;
|
---|
| 147 | cB = cB / nColorpixels;
|
---|
| 148 |
|
---|
| 149 | mAvgColour = Ogre::ColourValue(cR/255.0, cG/255.0, cB/255.0, 0.0); |
---|
| 150 | mCalculatedAvgColour = true; |
---|
| 151 | } |
---|
[721] | 152 | |
---|
[731] | 153 | void Texture::load(Ogre::String folderName, Ogre::String fileName) |
---|
| 154 | { |
---|
| 155 | Ogre::TextureManager::getSingleton().load(fileName, Ogre::ResourceGroupManager::DEFAULT_RESOURCE_GROUP_NAME); |
---|
| 156 | mTexture = (Ogre::Texture*)Ogre::TextureManager::getSingleton().getByName(fileName).getPointer(); |
---|
| 157 | mWidth = mTexture->getSrcWidth(); |
---|
| 158 | mHeight = mTexture->getSrcHeight(); |
---|
[721] | 159 | } |
---|
[731] | 160 | |
---|
| 161 | void Texture::save(Ogre::String folderName, Ogre::String filename) |
---|
| 162 | { |
---|
| 163 | Ogre::HardwarePixelBufferSharedPtr readbuffer; |
---|
| 164 | readbuffer = mTexture->getBuffer(0, 0); |
---|
| 165 | unsigned char *tex = new unsigned char[readbuffer->getSizeInBytes()]; |
---|
| 166 | Ogre::PixelBox *pBox = new Ogre::PixelBox(mTexture->getWidth(), mTexture->getHeight(), mTexture->getDepth(), mTexture->getFormat(), tex); |
---|
| 167 | readbuffer->blitToMemory((*pBox)); |
---|
| 168 | |
---|
| 169 | Ogre::Image img; |
---|
| 170 | img = img.loadDynamicImage(tex, mTexture->getWidth(), mTexture->getHeight(), mTexture->getDepth(), mTexture->getFormat(), true, 1, 0); |
---|
| 171 | img.resize(mWidth, mHeight); |
---|
| 172 | img.save(folderName + filename); |
---|
| 173 | delete pBox; |
---|
| 174 | } |
---|
| 175 | |
---|
[745] | 176 | void Texture::update() |
---|
[731] | 177 | { |
---|
[745] | 178 | mTexture->getBuffer(0, 0)->getRenderTarget()->update(); |
---|
[731] | 179 | } |
---|
| 180 | |
---|
| 181 | void Texture::setWidth(unsigned int width) |
---|
| 182 | { |
---|
| 183 | mWidth = width; |
---|
| 184 | } |
---|
| 185 | |
---|
| 186 | unsigned int Texture::getWidth() |
---|
| 187 | { |
---|
| 188 | return mWidth; |
---|
| 189 | } |
---|
| 190 | |
---|
| 191 | void Texture::setHeight(unsigned int height) |
---|
| 192 | { |
---|
| 193 | mHeight = height; |
---|
| 194 | } |
---|
| 195 | |
---|
| 196 | unsigned int Texture::getHeight() |
---|
| 197 | { |
---|
| 198 | return mHeight; |
---|
| 199 | } |
---|
| 200 | |
---|
| 201 | void Texture::setTextureName(Ogre::String textureName) |
---|
| 202 | { |
---|
| 203 | mTextureName = textureName; |
---|
| 204 | } |
---|
| 205 | |
---|
| 206 | Ogre::String Texture::getTextureName() |
---|
| 207 | { |
---|
| 208 | return mTextureName; |
---|
| 209 | } |
---|
| 210 | |
---|
| 211 | void Texture::setMaterial(Ogre::Material *material) |
---|
| 212 | { |
---|
| 213 | mMaterial = material; |
---|
| 214 | mRectangle2D->setMaterial(mMaterial->getName()); |
---|
| 215 | } |
---|
| 216 | |
---|
| 217 | Ogre::Material* Texture::getMaterial() |
---|
| 218 | { |
---|
| 219 | return mMaterial; |
---|
| 220 | } |
---|
| 221 | |
---|
[751] | 222 | void Texture::create(Ogre::String fileName, unsigned int width, unsigned int height, Ogre::PixelFormat pixelFormat, Ogre::Camera *camera, Ogre::ColourValue backgroundColour) |
---|
[745] | 223 | { |
---|
| 224 | mCamera = camera; |
---|
| 225 | mWidth = width; |
---|
| 226 | mHeight = height; |
---|
| 227 | mPixelFormat = pixelFormat; |
---|
| 228 | mTexture = Ogre::TextureManager::getSingleton().createManual(fileName, "General", Ogre::TEX_TYPE_2D, mWidth, mHeight, 0, mPixelFormat, Ogre::TU_RENDERTARGET).getPointer();
|
---|
| 229 | mTexture->getBuffer(0, 0)->getRenderTarget();
|
---|
| 230 | Ogre::RenderTexture *rt = mTexture->getBuffer()->getRenderTarget();
|
---|
| 231 | rt->setAutoUpdated(false);
|
---|
| 232 | Ogre::Viewport *v = rt->addViewport(mCamera);
|
---|
| 233 | v->setClearEveryFrame(true);
|
---|
[751] | 234 | v->setBackgroundColour(backgroundColour);
|
---|
[745] | 235 | v->setOverlaysEnabled(false);
|
---|
| 236 | v->setDimensions(0,0,1.0,1.0); |
---|
| 237 | Ogre::Root::getSingleton().getRenderSystem()->clearFrameBuffer(Ogre::FBT_COLOUR, Ogre::ColourValue(1.0f,1.0f,1.0f,0.0f) ); |
---|
[731] | 238 | } |
---|
[745] | 239 | |
---|
| 240 | void Texture::setCamera(Ogre::Camera *camera) |
---|
| 241 | { |
---|
| 242 | mCamera = camera; |
---|
| 243 | } |
---|
| 244 | |
---|
| 245 | |
---|
| 246 | void Texture::setFormat(Ogre::PixelFormat pixelFormat) |
---|
| 247 | { |
---|
| 248 | mPixelFormat = pixelFormat; |
---|
| 249 | } |
---|
| 250 | |
---|
| 251 | } |
---|