scummvm/engines/wage/design.h

105 lines
4.5 KiB
C
Raw Normal View History

/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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 (at your option) 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
* MIT License:
*
* Copyright (c) 2009 Alexei Svitkine, Eugene Sandulenko
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
*/
#ifndef WAGE_DESIGN_H
#define WAGE_DESIGN_H
2015-12-15 11:48:09 +01:00
#include "graphics/surface.h"
2015-12-16 09:49:15 +01:00
#include "common/memstream.h"
#include "common/rect.h"
2015-12-15 11:48:09 +01:00
namespace Wage {
class Design {
public:
Design(Common::SeekableReadStream *data);
~Design();
void setBounds(Common::Rect *bounds) {
_bounds = new Common::Rect(*bounds);
}
2015-12-15 11:48:09 +01:00
Common::Rect *getBounds() {
2015-12-26 11:55:55 +01:00
return _bounds;
}
2015-12-15 11:48:09 +01:00
2015-12-29 10:46:51 +01:00
void paint(Graphics::Surface *canvas, Patterns &patterns, bool mask, int x, int y);
static void drawFilledRect(Graphics::Surface *surface, Common::Rect &rect, int color, Patterns &patterns, byte fillType);
static void drawFilledRoundRect(Graphics::Surface *surface, Common::Rect &rect, int arc, int color, Patterns &patterns, byte fillType);
2015-12-15 11:48:09 +01:00
private:
byte *_data;
2015-12-15 11:48:09 +01:00
int _len;
Common::Rect *_bounds;
2015-12-29 10:46:51 +01:00
Graphics::Surface *_surface;
2015-12-16 09:49:15 +01:00
private:
2015-12-16 21:13:48 +01:00
void drawRect(Graphics::Surface *surface, Common::ReadStream &in, bool mask,
Patterns &patterns, byte fillType, byte borderThickness, byte borderFillType);
void drawRoundRect(Graphics::Surface *surface, Common::ReadStream &in, bool mask,
2015-12-16 21:44:48 +01:00
Patterns &patterns, byte fillType, byte borderThickness, byte borderFillType);
2015-12-16 21:13:48 +01:00
void drawPolygon(Graphics::Surface *surface, Common::ReadStream &in, bool mask,
2015-12-16 21:44:48 +01:00
Patterns &patterns, byte fillType, byte borderThickness, byte borderFillType);
2015-12-18 00:17:13 +01:00
void drawOval(Graphics::Surface *surface, Common::ReadStream &in, bool mask,
Patterns &patterns, byte fillType, byte borderThickness, byte borderFillType);
2015-12-18 11:26:33 +01:00
void drawBitmap(Graphics::Surface *surface, Common::ReadStream &in, bool mask);
void drawFilledRect(Common::Rect &rect, int color, void (*plotProc)(int, int, int, void *), void *data);
static void drawFilledRoundRect(Common::Rect &rect, int arc, int color, void (*plotProc)(int, int, int, void *), void *data);
void drawPolygonScan(int *polyX, int *polyY, int npoints, Common::Rect &bbox, int color,
void (*plotProc)(int, int, int, void *), void *data);
void drawEllipse(int x0, int y0, int x1, int y1, bool filled, void (*plotProc)(int, int, int, void *), void *data);
static void drawHLine(int x1, int x2, int y, int color, void (*plotProc)(int, int, int, void *), void *data);
static void drawVLine(int x, int y1, int y2, int color, void (*plotProc)(int, int, int, void *), void *data);
void drawThickLine (int x1, int y1, int x2, int y2, int thick, int color,
void (*plotProc)(int, int, int, void *), void *data);
};
} // End of namespace Wage
2015-12-15 11:48:09 +01:00
#endif