2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* light_occluder_2d.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 22:01:57 +01:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2016-06-18 14:46:12 +02: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. */
|
|
|
|
/*************************************************************************/
|
2015-03-02 04:54:10 +01:00
|
|
|
#include "light_occluder_2d.h"
|
|
|
|
|
|
|
|
|
2017-01-07 22:25:37 +01:00
|
|
|
void OccluderPolygon2D::set_polygon(const PoolVector<Vector2>& p_polygon) {
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
polygon=p_polygon;
|
|
|
|
VS::get_singleton()->canvas_occluder_polygon_set_shape(occ_polygon,p_polygon,closed);
|
|
|
|
emit_changed();
|
|
|
|
}
|
|
|
|
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<Vector2> OccluderPolygon2D::get_polygon() const{
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
return polygon;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OccluderPolygon2D::set_closed(bool p_closed) {
|
|
|
|
|
|
|
|
if (closed==p_closed)
|
|
|
|
return;
|
|
|
|
closed=p_closed;
|
2015-03-09 06:34:56 +01:00
|
|
|
if (polygon.size())
|
|
|
|
VS::get_singleton()->canvas_occluder_polygon_set_shape(occ_polygon,polygon,closed);
|
2015-03-02 04:54:10 +01:00
|
|
|
emit_changed();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OccluderPolygon2D::is_closed() const{
|
|
|
|
|
|
|
|
return closed;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OccluderPolygon2D::set_cull_mode(CullMode p_mode){
|
|
|
|
|
|
|
|
cull=p_mode;
|
|
|
|
VS::get_singleton()->canvas_occluder_polygon_set_cull_mode(occ_polygon,VS::CanvasOccluderPolygonCullMode(p_mode));
|
|
|
|
}
|
|
|
|
|
|
|
|
OccluderPolygon2D::CullMode OccluderPolygon2D::get_cull_mode() const{
|
|
|
|
|
|
|
|
return cull;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RID OccluderPolygon2D::get_rid() const {
|
|
|
|
|
|
|
|
return occ_polygon;
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:27:15 +02:00
|
|
|
|
|
|
|
|
2015-03-02 04:54:10 +01:00
|
|
|
void OccluderPolygon2D::_bind_methods() {
|
|
|
|
|
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_closed","closed"),&OccluderPolygon2D::set_closed);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_closed"),&OccluderPolygon2D::is_closed);
|
2015-03-02 04:54:10 +01:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_cull_mode","cull_mode"),&OccluderPolygon2D::set_cull_mode);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_cull_mode"),&OccluderPolygon2D::get_cull_mode);
|
2015-03-02 04:54:10 +01:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_polygon","polygon"),&OccluderPolygon2D::set_polygon);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_polygon"),&OccluderPolygon2D::get_polygon);
|
2015-03-02 04:54:10 +01:00
|
|
|
|
2017-02-12 01:11:37 +01:00
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::BOOL,"closed"),"set_closed","is_closed");
|
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::INT,"cull_mode",PROPERTY_HINT_ENUM,"Disabled,ClockWise,CounterClockWise"),"set_cull_mode","get_cull_mode");
|
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::POOL_VECTOR2_ARRAY,"polygon"),"set_polygon","get_polygon");
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
BIND_CONSTANT(CULL_DISABLED);
|
|
|
|
BIND_CONSTANT(CULL_CLOCKWISE);
|
|
|
|
BIND_CONSTANT(CULL_COUNTER_CLOCKWISE);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
OccluderPolygon2D::OccluderPolygon2D() {
|
|
|
|
|
|
|
|
occ_polygon=VS::get_singleton()->canvas_occluder_polygon_create();
|
|
|
|
closed=true;
|
|
|
|
cull=CULL_DISABLED;
|
|
|
|
}
|
|
|
|
|
|
|
|
OccluderPolygon2D::~OccluderPolygon2D() {
|
|
|
|
|
|
|
|
VS::get_singleton()->free(occ_polygon);
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
void LightOccluder2D::_poly_changed() {
|
|
|
|
|
|
|
|
update();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
void LightOccluder2D::_notification(int p_what) {
|
|
|
|
|
|
|
|
if (p_what==NOTIFICATION_ENTER_CANVAS) {
|
|
|
|
|
|
|
|
VS::get_singleton()->canvas_light_occluder_attach_to_canvas(occluder,get_canvas());
|
|
|
|
VS::get_singleton()->canvas_light_occluder_set_transform(occluder,get_global_transform());
|
2017-01-13 14:45:50 +01:00
|
|
|
VS::get_singleton()->canvas_light_occluder_set_enabled(occluder,is_visible_in_tree());
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
if (p_what==NOTIFICATION_TRANSFORM_CHANGED) {
|
|
|
|
|
|
|
|
VS::get_singleton()->canvas_light_occluder_set_transform(occluder,get_global_transform());
|
|
|
|
}
|
2016-01-01 14:45:24 +01:00
|
|
|
if (p_what==NOTIFICATION_VISIBILITY_CHANGED) {
|
|
|
|
|
2017-01-13 14:45:50 +01:00
|
|
|
VS::get_singleton()->canvas_light_occluder_set_enabled(occluder,is_visible_in_tree());
|
2016-01-01 14:45:24 +01:00
|
|
|
}
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
if (p_what==NOTIFICATION_DRAW) {
|
|
|
|
|
|
|
|
if (get_tree()->is_editor_hint()) {
|
|
|
|
|
|
|
|
if (occluder_polygon.is_valid()) {
|
|
|
|
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<Vector2> poly = occluder_polygon->get_polygon();
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
if (poly.size()) {
|
|
|
|
if (occluder_polygon->is_closed()) {
|
|
|
|
Vector<Color> color;
|
|
|
|
color.push_back(Color(0,0,0,0.6));
|
|
|
|
draw_polygon(Variant(poly),color);
|
|
|
|
} else {
|
|
|
|
|
|
|
|
int ps=poly.size();
|
2017-01-07 22:25:37 +01:00
|
|
|
PoolVector<Vector2>::Read r = poly.read();
|
2015-03-02 04:54:10 +01:00
|
|
|
for(int i=0;i<ps-1;i++) {
|
|
|
|
|
|
|
|
draw_line(r[i],r[i+1],Color(0,0,0,0.6),3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (p_what==NOTIFICATION_EXIT_CANVAS) {
|
|
|
|
|
|
|
|
VS::get_singleton()->canvas_light_occluder_attach_to_canvas(occluder,RID());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void LightOccluder2D::set_occluder_polygon(const Ref<OccluderPolygon2D>& p_polygon) {
|
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
if (occluder_polygon.is_valid())
|
|
|
|
occluder_polygon->disconnect("changed",this,"_poly_changed");
|
|
|
|
#endif
|
|
|
|
occluder_polygon=p_polygon;
|
|
|
|
|
|
|
|
if (occluder_polygon.is_valid())
|
|
|
|
VS::get_singleton()->canvas_light_occluder_set_polygon(occluder,occluder_polygon->get_rid());
|
|
|
|
else
|
|
|
|
VS::get_singleton()->canvas_light_occluder_set_polygon(occluder,RID());
|
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
|
|
|
if (occluder_polygon.is_valid())
|
|
|
|
occluder_polygon->connect("changed",this,"_poly_changed");
|
|
|
|
update();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
Ref<OccluderPolygon2D> LightOccluder2D::get_occluder_polygon() const {
|
|
|
|
|
|
|
|
return occluder_polygon;
|
|
|
|
}
|
|
|
|
|
|
|
|
void LightOccluder2D::set_occluder_light_mask(int p_mask) {
|
|
|
|
|
|
|
|
mask=p_mask;
|
|
|
|
VS::get_singleton()->canvas_light_occluder_set_light_mask(occluder,mask);
|
|
|
|
}
|
|
|
|
|
|
|
|
int LightOccluder2D::get_occluder_light_mask() const{
|
|
|
|
|
|
|
|
return mask;
|
|
|
|
}
|
|
|
|
|
2016-05-17 23:27:15 +02:00
|
|
|
|
|
|
|
String LightOccluder2D::get_configuration_warning() const {
|
|
|
|
|
|
|
|
if (!occluder_polygon.is_valid()) {
|
|
|
|
return TTR("An occluder polygon must be set (or drawn) for this occluder to take effect.");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (occluder_polygon.is_valid() && occluder_polygon->get_polygon().size()==0) {
|
|
|
|
return TTR("The occluder polygon for this occluder is empty. Please draw a polygon!");
|
|
|
|
}
|
|
|
|
|
|
|
|
return String();
|
|
|
|
}
|
|
|
|
|
2015-03-02 04:54:10 +01:00
|
|
|
void LightOccluder2D::_bind_methods() {
|
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_occluder_polygon","polygon:OccluderPolygon2D"),&LightOccluder2D::set_occluder_polygon);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_occluder_polygon:OccluderPolygon2D"),&LightOccluder2D::get_occluder_polygon);
|
2015-03-02 04:54:10 +01:00
|
|
|
|
2017-02-13 12:47:24 +01:00
|
|
|
ClassDB::bind_method(D_METHOD("set_occluder_light_mask","mask"),&LightOccluder2D::set_occluder_light_mask);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_occluder_light_mask"),&LightOccluder2D::get_occluder_light_mask);
|
2015-03-02 04:54:10 +01:00
|
|
|
|
|
|
|
#ifdef DEBUG_ENABLED
|
2017-01-03 03:03:46 +01:00
|
|
|
ClassDB::bind_method("_poly_changed",&LightOccluder2D::_poly_changed);
|
2015-03-02 04:54:10 +01:00
|
|
|
#endif
|
|
|
|
|
2017-02-12 01:11:37 +01:00
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::OBJECT,"occluder",PROPERTY_HINT_RESOURCE_TYPE,"OccluderPolygon2D"),"set_occluder_polygon","get_occluder_polygon");
|
|
|
|
ADD_PROPERTY( PropertyInfo(Variant::INT,"light_mask",PROPERTY_HINT_LAYERS_2D_RENDER),"set_occluder_light_mask","get_occluder_light_mask");
|
2015-03-02 04:54:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LightOccluder2D::LightOccluder2D() {
|
|
|
|
|
|
|
|
occluder=VS::get_singleton()->canvas_light_occluder_create();
|
|
|
|
mask=1;
|
2017-01-13 00:35:46 +01:00
|
|
|
set_notify_transform(true);
|
2015-03-02 04:54:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
LightOccluder2D::~LightOccluder2D() {
|
|
|
|
|
|
|
|
VS::get_singleton()->free(occluder);
|
|
|
|
}
|
|
|
|
|