summaryrefslogtreecommitdiff
path: root/src/graphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2011-03-26 14:48:19 +0200
committerAndrei Karas <akaras@inbox.ru>2011-03-26 14:48:19 +0200
commit0a62226b1cc9c1b01ddab4feb9095ed7a5ba3e48 (patch)
tree7e0611c09922dee95259c23ac02df14530be45a3 /src/graphics.cpp
parent8403dcf857c9cc639e8162edd5d4df4af07274bc (diff)
downloadplus-0a62226b1cc9c1b01ddab4feb9095ed7a5ba3e48.tar.gz
plus-0a62226b1cc9c1b01ddab4feb9095ed7a5ba3e48.tar.bz2
plus-0a62226b1cc9c1b01ddab4feb9095ed7a5ba3e48.tar.xz
plus-0a62226b1cc9c1b01ddab4feb9095ed7a5ba3e48.zip
Remove debug code and add checks in graphics classes.
Diffstat (limited to 'src/graphics.cpp')
-rw-r--r--src/graphics.cpp55
1 files changed, 8 insertions, 47 deletions
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<DoubleRect*> *arr = vert->getRectsSDL();
- std::list<DoubleRect*>::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<short>(dstX);
- dstRect.y = static_cast<short>(dstY);
- srcRect.x = static_cast<short>(srcX);
- srcRect.y = static_cast<short>(srcY);
- srcRect.w = static_cast<Uint16>(dw);
- srcRect.h = static_cast<Uint16>(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<DoubleRect*> *arr = vert->getRectsSDL();
std::list<DoubleRect*>::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;