mirror of https://github.com/axmolengine/axmol.git
78 lines
2.9 KiB
C++
78 lines
2.9 KiB
C++
/****************************************************************************
|
||
Copyright (c) 2008-2010 Ricardo Quesada
|
||
Copyright (c) 2010-2012 cocos2d-x.org
|
||
Copyright (c) 2011 Zynga Inc.
|
||
Copyright (c) 2013-2014 Chukong Technologies Inc.
|
||
|
||
http://www.cocos2d-x.org
|
||
|
||
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 COCOS_2D_MARCHINGSQUARE_H__
|
||
#define COCOS_2D_MARCHINGSQUARE_H__
|
||
|
||
#include <string>
|
||
#include <vector>
|
||
#include "base/CCConsole.h"
|
||
#include "platform/CCPlatformMacros.h"
|
||
#include "math/Vec2.h"
|
||
|
||
NS_CC_BEGIN
|
||
|
||
class CC_DLL MarchingSquare
|
||
{
|
||
public:
|
||
MarchingSquare(const std::string &filename, const unsigned int threshold = 0);
|
||
//TODO: should return list of vec2s
|
||
void trace();
|
||
void setThreshold(unsigned int threshold){_threshold = threshold;};
|
||
unsigned int getThreshold(){return _threshold;};
|
||
ssize_t getVecCount(){return points.size();};
|
||
std::vector<cocos2d::Vec2> getPoints(){return points;};
|
||
void printPoints();
|
||
//using Ramer–Douglas–Peucker algorithm
|
||
void optimize(float level = 0);
|
||
protected:
|
||
unsigned int findFirstNoneTransparentPixel();
|
||
void marchSquare(int startx, int starty);
|
||
unsigned int getSquareValue(int x, int y);
|
||
unsigned char * data;
|
||
std::string _filename;
|
||
unsigned int width;
|
||
unsigned int height;
|
||
unsigned int _threshold;
|
||
unsigned char getAlphaAt(const unsigned int i);
|
||
unsigned char getAlphaAt(const int x, const int y);
|
||
cocos2d::Vec2 start;
|
||
std::vector<cocos2d::Vec2> points;
|
||
int getIndexFromPos(int x, int y){return y*width+x;};
|
||
cocos2d::Vec2 getPosFromIndex(int i){return cocos2d::Vec2(i%width, i/width);};
|
||
|
||
float epsilon;
|
||
std::vector<cocos2d::Vec2> rdp(std::vector<cocos2d::Vec2> v);
|
||
float perpendicularDistance(cocos2d::Vec2 i, cocos2d::Vec2 start, cocos2d::Vec2 end);
|
||
float scaleFactor;
|
||
|
||
|
||
};
|
||
|
||
NS_CC_END
|
||
|
||
#endif // #ifndef COCOS_2D_MARCHINGSQUARE_H__
|