From aa3f63fd497558a02feb3ddbc44f31eac091f39b Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Tue, 10 Oct 2017 22:14:45 +0300 Subject: Remove most unused files. --- src/render/surfacegraphics.h | 218 ------------------------------------------- 1 file changed, 218 deletions(-) delete mode 100644 src/render/surfacegraphics.h (limited to 'src/render/surfacegraphics.h') diff --git a/src/render/surfacegraphics.h b/src/render/surfacegraphics.h deleted file mode 100644 index 2e46c9f1e..000000000 --- a/src/render/surfacegraphics.h +++ /dev/null @@ -1,218 +0,0 @@ -/* - * The ManaPlus Client - * Copyright (C) 2004-2009 The Mana World Development Team - * Copyright (C) 2009-2010 The Mana Developers - * Copyright (C) 2011-2017 The ManaPlus Developers - * - * This file is part of The ManaPlus Client. - * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * any later version. - * - * This program 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. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -#ifndef RENDER_SURFACEGRAPHICS_H -#define RENDER_SURFACEGRAPHICS_H - -#include "enums/render/blitmode.h" - -#include "render/graphics.h" - -#include "localconsts.h" - -class Image; -class ImageCollection; -class ImageVertexes; - -/** - * A central point of control for graphics. - */ -class SurfaceGraphics final : public Graphics -{ - public: - SurfaceGraphics(); - - A_DELETE_COPY(SurfaceGraphics) - - ~SurfaceGraphics(); - - void setTarget(SDL_Surface *restrict const target) restrict2 noexcept2 - { mTarget = target; } - - SDL_Surface *getTarget() const restrict2 noexcept2 - { return mTarget; } - - void beginDraw() restrict2 override final - { } - - void endDraw() restrict2 override final - { } - - void pushClipArea(const Rect &restrict rect A_UNUSED) - restrict2 override final - { } - - void popClipArea() restrict2 override final - { } - - void drawRescaledImage(const Image *restrict const image A_UNUSED, - int dstX A_UNUSED, int dstY A_UNUSED, - const int desiredWidth A_UNUSED, - const int desiredHeight A_UNUSED) - restrict2 override final - { } - - void drawPattern(const Image *restrict const image A_UNUSED, - const int x A_UNUSED, - const int y A_UNUSED, - const int w A_UNUSED, - const int h A_UNUSED) restrict2 override final - { } - - void drawRescaledPattern(const Image *const image A_UNUSED, - const int x A_UNUSED, - const int y A_UNUSED, - const int w A_UNUSED, - const int h A_UNUSED, - const int scaledWidth A_UNUSED, - const int scaledHeight A_UNUSED) - override final - { } - - void calcPattern(ImageVertexes *restrict const vert A_UNUSED, - const Image *restrict const image A_UNUSED, - const int x A_UNUSED, - const int y A_UNUSED, - const int w A_UNUSED, - const int h A_UNUSED) const restrict2 override final - { } - - void calcPattern(ImageCollection *restrict const vert A_UNUSED, - const Image *restrict const image A_UNUSED, - const int x A_UNUSED, - const int y A_UNUSED, - const int w A_UNUSED, - const int h A_UNUSED) const restrict2 override final - { } - - void calcTileVertexes(ImageVertexes *restrict const vert A_UNUSED, - const Image *restrict const image A_UNUSED, - int x A_UNUSED, - int y A_UNUSED) const restrict2 override final - A_NONNULL(2, 3) - { } - - void calcTileSDL(ImageVertexes *restrict const vert A_UNUSED, - int x A_UNUSED, - int y A_UNUSED) const restrict2 override final - { } - - void calcTileCollection(ImageCollection *restrict const - vertCol A_UNUSED, - const Image *restrict const image A_UNUSED, - int x A_UNUSED, - int y A_UNUSED) restrict2 override final - { } - - void drawTileVertexes(const ImageVertexes *restrict const - vert A_UNUSED) restrict2 override final - { } - - void drawTileCollection(const ImageCollection *restrict const - vertCol A_UNUSED) - restrict2 override final A_NONNULL(2) - { } - - void updateScreen() override final - { } - - void drawNet(const int x1 A_UNUSED, - const int y1 A_UNUSED, - const int x2 A_UNUSED, - const int y2 A_UNUSED, - const int width A_UNUSED, - const int height A_UNUSED) restrict2 override final - { } - - void calcWindow(ImageCollection *restrict const vertCol A_UNUSED, - const int x A_UNUSED, const int y A_UNUSED, - const int w A_UNUSED, const int h A_UNUSED, - const ImageRect &restrict imgRect A_UNUSED) - restrict2 override final A_NONNULL(2) - { } - - void setBlitMode(const BlitModeT mode) restrict2 noexcept2 - { mBlitMode = mode; } - - BlitModeT getBlitMode() const restrict2 noexcept2 A_WARN_UNUSED - { return mBlitMode; } - - void fillRectangle(const Rect &restrict rect A_UNUSED) - restrict2 override final - { } - - void drawRectangle(const Rect &restrict rect A_UNUSED) - restrict2 override final - { } - - void drawPoint(int x A_UNUSED, int y A_UNUSED) restrict2 override final - { } - - void drawLine(int x1 A_UNUSED, int y1 A_UNUSED, - int x2 A_UNUSED, int y2 A_UNUSED) - restrict2 override final - { } - - bool setVideoMode(const int w A_UNUSED, const int h A_UNUSED, - const int scale A_UNUSED, - const int bpp A_UNUSED, - const bool fs A_UNUSED, const bool hwaccel A_UNUSED, - const bool resize A_UNUSED, - const bool noFrame A_UNUSED, - const bool allowHighDPI A_UNUSED) - restrict2 override final - { return false; } - - void drawImage(const Image *restrict const image, - int dstX, int dstY) restrict2 override final; - - void copyImage(const Image *restrict const image, - int dstX, int dstY) restrict2 override final; - - void drawImageCached(const Image *restrict const image, - int x, int y) restrict2 override final; - - void drawPatternCached(const Image *restrict const image A_UNUSED, - const int x A_UNUSED, - const int y A_UNUSED, - const int w A_UNUSED, - const int h A_UNUSED) restrict2 override final - { } - - void completeCache() restrict2 override final; - - /** - * Draws a rectangle using images. 4 corner images, 4 side images and 1 - * image for the inside. - */ - void drawImageRect(const int x A_UNUSED, const int y A_UNUSED, - const int w A_UNUSED, const int h A_UNUSED, - const ImageRect &restrict imgRect A_UNUSED) - restrict2 override final - { } - - protected: - BlitModeT mBlitMode; - SDL_Surface *mTarget; -}; - -#endif // RENDER_SURFACEGRAPHICS_H -- cgit v1.2.3-70-g09d2