1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132
|
// tiledAggCanvas.cpp
// Context Free
// ---------------------
// Copyright (C) 2012-2013 John Horigan - john@glyphic.com
//
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
// John Horigan can be contacted at john@glyphic.com or at
// John Horigan, 1209 Villa St., Mountain View, CA 94041-1123, USA
//
//
#include "abstractPngCanvas.h"
#include "tiledCanvas.h"
#include "makeCFfilename.h"
#include <string>
#include <iostream>
#include <algorithm>
#include "prettyint.h"
using std::cout;
using std::endl;
abstractPngCanvas::abstractPngCanvas(const char* outfilename, bool quiet, int width, int height,
aggCanvas::PixelFormat pixfmt, bool crop, int frameCount,
int variation, bool wallpaper, Renderer *r, int mx, int my)
: aggCanvas(pixfmt), mOutputFileName(outfilename), mFrameCount(frameCount),
mCurrentFrame(1), mVariation(variation), mPixelFormat(pixfmt),
mCrop(crop), mQuiet(quiet), mWallpaper(wallpaper), mRenderer(r), mFullWidth(width),
mFullHeight(height), mOriginX(0), mOriginY(0)
{
if (wallpaper) {
mWidth = r->m_width;
mHeight = r->m_height;
mFullWidth = width;
mFullHeight = height;
double scalex = static_cast<double>(width) / ( mWidth * mx);
double scaley = static_cast<double>(height) / (mHeight * my);
double scale = scalex < scaley ? scalex : scaley;
mWidth = static_cast<int>(mWidth * scale);
mHeight = static_cast<int>(mHeight * scale);
} else {
mWidth = width;
mHeight = height;
mFullWidth = mWidth * mx;
mFullHeight = mHeight * my;
}
mOriginX = (mFullWidth - mWidth) / 2;
mOriginY = (mFullHeight - mHeight) / 2;
int bpp = BytesPerPixel.at(mPixelFormat);
mStride = mFullWidth * bpp;
#ifdef _WIN32
mStride += ((-mStride) & 3);
#endif
mData = std::make_unique<unsigned char[]>(mStride * mFullHeight);
attach(mData.get() + mOriginY * mStride + mOriginX * bpp, mWidth, mHeight, mStride);
if (quiet) return;
cout << prettyInt(static_cast<unsigned long>(mFullWidth)) << "w x " <<
prettyInt(static_cast<unsigned long>(mFullHeight)) << "h pixel image." << endl;
cout << "Generating..." << endl;
}
abstractPngCanvas::~abstractPngCanvas() = default;
void
abstractPngCanvas::start(bool clear, const agg::rgba &bk, int width, int height)
{
if (!mFrameCount && !mQuiet)
cout << endl << "Rendering..." << endl;
aggCanvas::start(clear, bk, width, height);
}
void
abstractPngCanvas::end()
{
aggCanvas::end();
if (mRenderer && mRenderer->m_tiledCanvas) {
tileList points = mRenderer->m_tiledCanvas->getTessellation(mFullWidth, mFullHeight,
mOriginX, mOriginY, true);
std::reverse(points.begin(), points.end()); // could use reverse adapter
for (auto&& pt: points) {
if (pt.x != mOriginX || pt.y != mOriginY)
copyImageUnscaled(pt.x, pt.y);
}
}
std::string name = makeCFfilename(mOutputFileName, mCurrentFrame, mFrameCount,
mVariation);
if (mFrameCount) {
output(name.c_str(), mCurrentFrame++);
} else {
output(name.c_str());
}
}
void
abstractPngCanvas::copyImageUnscaled(int destx, int desty)
{
int bpp = BytesPerPixel.at(mPixelFormat);
destx *= bpp;
int srcx = mOriginX * bpp;
int srcy = mOriginY;
for (int y = 0; y < mHeight; ++y) {
if (y + desty < 0 || y + desty >= mFullHeight) continue;
for (int x = 0; x < mWidth * bpp; ++x) {
if (destx + x >= 0 && destx + x < mStride)
mData[(y + desty) * mStride + destx + x] = mData[(y + srcy) * mStride + srcx + x];
}
}
}
|