2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2019-02-12 16:18:13 +00:00
|
|
|
/* bit_map.h */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2019-01-01 11:53:14 +00:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* 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. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2019-02-12 16:18:13 +00:00
|
|
|
#ifndef BIT_MAP_H
|
|
|
|
#define BIT_MAP_H
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-09-11 16:13:45 +00:00
|
|
|
#include "core/image.h"
|
|
|
|
#include "core/io/resource_loader.h"
|
|
|
|
#include "core/resource.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
class BitMap : public Resource {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
GDCLASS(BitMap, Resource);
|
2016-06-05 18:11:57 +00:00
|
|
|
OBJ_SAVE_TYPE(BitMap);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
Vector<uint8_t> bitmask;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
|
2018-02-21 12:38:21 +00:00
|
|
|
Vector<Vector2> _march_square(const Rect2i &rect, const Point2i &start) const;
|
|
|
|
|
2018-08-08 19:11:54 +00:00
|
|
|
Array _opaque_to_polygons_bind(const Rect2 &p_rect, float p_epsilon) const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
protected:
|
2017-03-05 15:44:50 +00:00
|
|
|
void _set_data(const Dictionary &p_d);
|
2014-02-10 01:10:30 +00:00
|
|
|
Dictionary _get_data() const;
|
|
|
|
|
|
|
|
static void _bind_methods();
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
public:
|
|
|
|
void create(const Size2 &p_size);
|
2018-02-21 16:30:55 +00:00
|
|
|
void create_from_image_alpha(const Ref<Image> &p_image, float p_threshold = 0.1);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void set_bit(const Point2 &p_pos, bool p_value);
|
|
|
|
bool get_bit(const Point2 &p_pos) const;
|
|
|
|
void set_bit_rect(const Rect2 &p_rect, bool p_value);
|
2014-02-10 01:10:30 +00:00
|
|
|
int get_true_bit_count() const;
|
|
|
|
|
|
|
|
Size2 get_size() const;
|
2019-05-20 11:51:51 +00:00
|
|
|
void resize(const Size2 &p_new_size);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2018-02-21 12:38:21 +00:00
|
|
|
void grow_mask(int p_pixels, const Rect2 &p_rect);
|
|
|
|
|
2019-05-20 11:51:51 +00:00
|
|
|
void blit(const Vector2 &p_pos, const Ref<BitMap> &p_bitmap);
|
2019-04-19 18:54:33 +00:00
|
|
|
Ref<Image> convert_to_image() const;
|
|
|
|
|
2018-02-21 12:38:21 +00:00
|
|
|
Vector<Vector<Vector2> > clip_opaque_to_polygons(const Rect2 &p_rect, float p_epsilon = 2.0) const;
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
BitMap();
|
|
|
|
};
|
|
|
|
|
2019-02-12 16:18:13 +00:00
|
|
|
#endif // BIT_MAP_H
|