ac10a2d039
git-svn-id: http://skia.googlecode.com/svn/trunk@649 2bbb7eff-a529-9590-31e7-b0007b416f81
85 lines
2.0 KiB
C++
85 lines
2.0 KiB
C++
/*
|
|
Copyright 2010 Google Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
|
|
#ifndef GrPlotMgr_DEFINED
|
|
#define GrPlotMgr_DEFINED
|
|
|
|
#include "GrTypes.h"
|
|
#include "GrPoint.h"
|
|
|
|
class GrPlotMgr : GrNoncopyable {
|
|
public:
|
|
GrPlotMgr(int width, int height) {
|
|
fDim.set(width, height);
|
|
size_t needed = width * height;
|
|
if (needed <= sizeof(fStorage)) {
|
|
fBusy = fStorage;
|
|
} else {
|
|
fBusy = new char[needed];
|
|
}
|
|
this->reset();
|
|
}
|
|
|
|
~GrPlotMgr() {
|
|
if (fBusy != fStorage) {
|
|
delete[] fBusy;
|
|
}
|
|
}
|
|
|
|
void reset() {
|
|
Gr_bzero(fBusy, fDim.fX * fDim.fY);
|
|
}
|
|
|
|
bool newPlot(GrIPoint16* loc) {
|
|
char* busy = fBusy;
|
|
for (int y = 0; y < fDim.fY; y++) {
|
|
for (int x = 0; x < fDim.fX; x++) {
|
|
if (!*busy) {
|
|
*busy = true;
|
|
loc->set(x, y);
|
|
return true;
|
|
}
|
|
busy++;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool isBusy(int x, int y) const {
|
|
GrAssert((unsigned)x < (unsigned)fDim.fX);
|
|
GrAssert((unsigned)y < (unsigned)fDim.fY);
|
|
return fBusy[y * fDim.fX + x] != 0;
|
|
}
|
|
|
|
void freePlot(int x, int y) {
|
|
GrAssert((unsigned)x < (unsigned)fDim.fX);
|
|
GrAssert((unsigned)y < (unsigned)fDim.fY);
|
|
fBusy[y * fDim.fX + x] = false;
|
|
}
|
|
|
|
private:
|
|
enum {
|
|
STORAGE = 64
|
|
};
|
|
char fStorage[STORAGE];
|
|
char* fBusy;
|
|
GrIPoint16 fDim;
|
|
};
|
|
|
|
#endif
|
|
|