From 0a62226b1cc9c1b01ddab4feb9095ed7a5ba3e48 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Sat, 26 Mar 2011 14:48:19 +0200 Subject: Remove debug code and add checks in graphics classes. --- src/graphics.cpp | 55 ++++++++----------------------------------------------- 1 file changed, 8 insertions(+), 47 deletions(-) (limited to 'src/graphics.cpp') diff --git a/src/graphics.cpp b/src/graphics.cpp index e221f9fdb..c1d96acdd 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -269,53 +269,6 @@ void Graphics::drawImagePattern(Image *image, int x, int y, int w, int h) } } -void Graphics::drawImagePatternDebug(GraphicsVertexes* vert, Image *image, int x, int y, int w, int h) -{ - // Check that preconditions for blitting are met. - if (!mTarget || !image) - return; - if (!image->mSDLSurface) - return; - - const int iw = image->getWidth(); - const int ih = image->getHeight(); - - if (iw == 0 || ih == 0) - return; - - std::list *arr = vert->getRectsSDL(); - std::list::iterator it; - it = arr->begin(); - - for (int py = 0; py < h; py += ih) // Y position on pattern plane - { - int dh = (py + ih >= h) ? h - py : ih; - int srcY = image->mBounds.y; - int dstY = y + py + mClipStack.top().yOffset; - - for (int px = 0; px < w; px += iw) // X position on pattern plane - { - int dw = (px + iw >= w) ? w - px : iw; - int srcX = image->mBounds.x; - int dstX = x + px + mClipStack.top().xOffset; - - SDL_Rect dstRect; - SDL_Rect srcRect; - dstRect.x = static_cast(dstX); - dstRect.y = static_cast(dstY); - srcRect.x = static_cast(srcX); - srcRect.y = static_cast(srcY); - srcRect.w = static_cast(dw); - srcRect.h = static_cast(dh); - - SDL_BlitSurface(image->mSDLSurface, &srcRect, mTarget, &dstRect); - - ++it; - } - } -} - - void Graphics::drawRescaledImagePattern(Image *image, int x, int y, int w, int h, int scaledWidth, int scaledHeight) @@ -434,6 +387,9 @@ void Graphics::drawImageRect(int x, int y, int w, int h, void Graphics::drawImageRect2(GraphicsVertexes* vert, const ImageRect &imgRect) { + if (!vert) + return; + vert->setPtr(0); const bool drawMain = imgRect.grid[4] && imgRect.grid[0] && imgRect.grid[2] @@ -476,6 +432,8 @@ void Graphics::drawImageRect2(GraphicsVertexes* vert, const ImageRect &imgRect) void Graphics::drawImagePattern2(GraphicsVertexes *vert, Image *img) { + // here not checking input parameters + std::list *arr = vert->getRectsSDL(); std::list::iterator it; @@ -491,6 +449,9 @@ bool Graphics::calcImageRect(GraphicsVertexes* vert, Image *bottom, Image *left, Image *center) { + if (!vert) + return false; + const bool drawMain = center && topLeft && topRight && bottomLeft && bottomRight; -- cgit v1.2.3-70-g09d2