2010-01-07 23:52:31 +02:00
|
|
|
/* 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.
|
|
|
|
*
|
2010-01-14 12:24:12 +02:00
|
|
|
* 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.
|
|
|
|
*
|
2010-01-07 23:52:31 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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"
|
2010-01-07 23:52:31 +02:00
|
|
|
#include "common/rect.h"
|
2015-12-15 11:48:09 +01:00
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
namespace Wage {
|
|
|
|
|
2015-12-16 09:49:15 +01:00
|
|
|
enum {
|
2015-12-16 20:59:33 +01:00
|
|
|
kColorBlack = 0,
|
|
|
|
kColorGray = 1,
|
|
|
|
kColorWhite = 2
|
2015-12-16 09:49:15 +01:00
|
|
|
};
|
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
class Design {
|
|
|
|
public:
|
2011-06-01 03:42:06 +01:00
|
|
|
Design(Common::SeekableReadStream *data);
|
2010-01-07 23:52:31 +02:00
|
|
|
~Design();
|
|
|
|
|
2010-01-11 21:30:48 +02:00
|
|
|
void setBounds(Common::Rect *bounds) {
|
|
|
|
_bounds = new Common::Rect(*bounds);
|
2010-01-07 23:52:31 +02:00
|
|
|
}
|
2015-12-15 11:48:09 +01:00
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
Common::Rect *getBounds() {
|
|
|
|
return new Common::Rect(*_bounds);
|
|
|
|
}
|
2015-12-15 11:48:09 +01:00
|
|
|
|
2015-12-16 21:44:48 +01:00
|
|
|
void paint(Graphics::Surface *canvas, Patterns &patterns, bool mask);
|
2015-12-15 11:48:09 +01:00
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
private:
|
|
|
|
byte *_data;
|
2015-12-15 11:48:09 +01:00
|
|
|
int _len;
|
2010-01-07 23:52:31 +02:00
|
|
|
Common::Rect *_bounds;
|
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,
|
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);
|
|
|
|
|
2015-12-16 09:49:15 +01:00
|
|
|
|
2015-12-17 09:45:02 +01:00
|
|
|
void patternThickRect(Graphics::Surface *surface, Patterns &patterns, Common::Rect &outer,
|
|
|
|
Common::Rect &inner, byte borderFillType, byte fillType);
|
|
|
|
|
|
|
|
void patternRect(Graphics::Surface *surface, Patterns &patterns, Common::Rect &rect, byte fillType);
|
2015-12-17 18:15:50 +01:00
|
|
|
void patternThickPolygon(Graphics::Surface *surface, Patterns &patterns, int *xpoints,
|
|
|
|
int *ypoints, int npoints, Common::Rect &bbox, byte borderFillType, byte fillType);
|
2015-12-18 00:17:13 +01:00
|
|
|
void plotEllipseRect(Graphics::Surface *surface, Patterns &patterns,
|
|
|
|
int x0, int y0, int x1, int y1, byte fillType);
|
|
|
|
void patternHLine(Graphics::Surface *surface, Patterns &patterns, byte fillType, int x1, int x2, int y, int x0, int y0);
|
|
|
|
|
2015-12-17 18:15:50 +01:00
|
|
|
|
2015-12-17 09:45:02 +01:00
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Wage
|
2015-12-15 11:48:09 +01:00
|
|
|
|
2010-01-07 23:52:31 +02:00
|
|
|
#endif
|