You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-28 16:07:14 +00:00
A Whole New World (clang-format edition)
I can show you the code Pretty, with proper whitespace Tell me, coder, now when did You last write readable code? I can open your eyes Make you see your bad indent Force you to respect the style The core devs agreed upon A whole new world A new fantastic code format A de facto standard With some sugar Enforced with clang-format A whole new world A dazzling style we all dreamed of And when we read it through It's crystal clear That now we're in a whole new world of code
This commit is contained in:
@@ -32,15 +32,15 @@
|
||||
|
||||
#define ITEMS_PER_PAGE 100
|
||||
|
||||
Variant ArrayPropertyEdit::get_array() const{
|
||||
Variant ArrayPropertyEdit::get_array() const {
|
||||
|
||||
Object*o = ObjectDB::get_instance(obj);
|
||||
Object *o = ObjectDB::get_instance(obj);
|
||||
if (!o)
|
||||
return Array();
|
||||
Variant arr=o->get(property);
|
||||
Variant arr = o->get(property);
|
||||
if (!arr.is_array()) {
|
||||
Variant::CallError ce;
|
||||
arr=Variant::construct(default_type,NULL,0,ce);
|
||||
arr = Variant::construct(default_type, NULL, 0, ce);
|
||||
}
|
||||
return arr;
|
||||
}
|
||||
@@ -48,7 +48,7 @@ Variant ArrayPropertyEdit::get_array() const{
|
||||
void ArrayPropertyEdit::_notif_change() {
|
||||
_change_notify();
|
||||
}
|
||||
void ArrayPropertyEdit::_notif_changev(const String& p_v) {
|
||||
void ArrayPropertyEdit::_notif_changev(const String &p_v) {
|
||||
|
||||
_change_notify(p_v.utf8().get_data());
|
||||
}
|
||||
@@ -56,115 +56,111 @@ void ArrayPropertyEdit::_notif_changev(const String& p_v) {
|
||||
void ArrayPropertyEdit::_set_size(int p_size) {
|
||||
|
||||
Variant arr = get_array();
|
||||
arr.call("resize",p_size);
|
||||
Object*o = ObjectDB::get_instance(obj);
|
||||
arr.call("resize", p_size);
|
||||
Object *o = ObjectDB::get_instance(obj);
|
||||
if (!o)
|
||||
return;
|
||||
|
||||
o->set(property,arr);
|
||||
|
||||
o->set(property, arr);
|
||||
}
|
||||
|
||||
void ArrayPropertyEdit::_set_value(int p_idx,const Variant& p_value) {
|
||||
void ArrayPropertyEdit::_set_value(int p_idx, const Variant &p_value) {
|
||||
|
||||
Variant arr = get_array();
|
||||
arr.set(p_idx,p_value);
|
||||
Object*o = ObjectDB::get_instance(obj);
|
||||
arr.set(p_idx, p_value);
|
||||
Object *o = ObjectDB::get_instance(obj);
|
||||
if (!o)
|
||||
return;
|
||||
|
||||
o->set(property,arr);
|
||||
o->set(property, arr);
|
||||
}
|
||||
|
||||
bool ArrayPropertyEdit::_set(const StringName& p_name, const Variant& p_value){
|
||||
bool ArrayPropertyEdit::_set(const StringName &p_name, const Variant &p_value) {
|
||||
|
||||
String pn=p_name;
|
||||
String pn = p_name;
|
||||
|
||||
if (pn.begins_with("array/")) {
|
||||
|
||||
if (pn=="array/size") {
|
||||
if (pn == "array/size") {
|
||||
|
||||
Variant arr = get_array();
|
||||
int size = arr.call("size");
|
||||
|
||||
int newsize=p_value;
|
||||
if (newsize==size)
|
||||
int newsize = p_value;
|
||||
if (newsize == size)
|
||||
return true;
|
||||
|
||||
UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
|
||||
ur->create_action(TTR("Resize Array"));
|
||||
ur->add_do_method(this,"_set_size",newsize);
|
||||
ur->add_undo_method(this,"_set_size",size);
|
||||
if (newsize<size) {
|
||||
for(int i=newsize;i<size;i++) {
|
||||
ur->add_undo_method(this,"_set_value",i,arr.get(i));
|
||||
|
||||
ur->add_do_method(this, "_set_size", newsize);
|
||||
ur->add_undo_method(this, "_set_size", size);
|
||||
if (newsize < size) {
|
||||
for (int i = newsize; i < size; i++) {
|
||||
ur->add_undo_method(this, "_set_value", i, arr.get(i));
|
||||
}
|
||||
} else if (newsize>size) {
|
||||
} else if (newsize > size) {
|
||||
|
||||
Variant init;
|
||||
Variant::CallError ce;
|
||||
Variant::Type new_type = subtype;
|
||||
if(new_type==Variant::NIL && size) {
|
||||
new_type = arr.get(size-1).get_type();
|
||||
if (new_type == Variant::NIL && size) {
|
||||
new_type = arr.get(size - 1).get_type();
|
||||
}
|
||||
if(new_type!=Variant::NIL) {
|
||||
init = Variant::construct(new_type,NULL,0,ce);
|
||||
for(int i=size;i<newsize;i++) {
|
||||
ur->add_do_method(this,"_set_value",i,init);
|
||||
if (new_type != Variant::NIL) {
|
||||
init = Variant::construct(new_type, NULL, 0, ce);
|
||||
for (int i = size; i < newsize; i++) {
|
||||
ur->add_do_method(this, "_set_value", i, init);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
ur->add_do_method(this,"_notif_change");
|
||||
ur->add_undo_method(this,"_notif_change");
|
||||
ur->add_do_method(this, "_notif_change");
|
||||
ur->add_undo_method(this, "_notif_change");
|
||||
ur->commit_action();
|
||||
return true;
|
||||
}
|
||||
if (pn=="array/page") {
|
||||
page=p_value;
|
||||
if (pn == "array/page") {
|
||||
page = p_value;
|
||||
_change_notify();
|
||||
return true;
|
||||
}
|
||||
|
||||
} else if (pn.begins_with("indices")) {
|
||||
|
||||
if (pn.find("_")!=-1) {
|
||||
if (pn.find("_") != -1) {
|
||||
//type
|
||||
int idx=pn.get_slicec('/',1).get_slicec('_',0).to_int();
|
||||
int idx = pn.get_slicec('/', 1).get_slicec('_', 0).to_int();
|
||||
|
||||
int type = p_value;
|
||||
|
||||
Variant arr = get_array();
|
||||
|
||||
Variant value = arr.get(idx);
|
||||
if (value.get_type()!=type && type>=0 && type<Variant::VARIANT_MAX) {
|
||||
if (value.get_type() != type && type >= 0 && type < Variant::VARIANT_MAX) {
|
||||
Variant::CallError ce;
|
||||
Variant new_value=Variant::construct(Variant::Type(type),NULL,0,ce);
|
||||
Variant new_value = Variant::construct(Variant::Type(type), NULL, 0, ce);
|
||||
UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
|
||||
|
||||
ur->create_action(TTR("Change Array Value Type"));
|
||||
ur->add_do_method(this,"_set_value",idx,new_value);
|
||||
ur->add_undo_method(this,"_set_value",idx,value);
|
||||
ur->add_do_method(this,"_notif_change");
|
||||
ur->add_undo_method(this,"_notif_change");
|
||||
ur->add_do_method(this, "_set_value", idx, new_value);
|
||||
ur->add_undo_method(this, "_set_value", idx, value);
|
||||
ur->add_do_method(this, "_notif_change");
|
||||
ur->add_undo_method(this, "_notif_change");
|
||||
ur->commit_action();
|
||||
|
||||
}
|
||||
return true;
|
||||
|
||||
} else {
|
||||
int idx=pn.get_slicec('/',1).to_int();
|
||||
int idx = pn.get_slicec('/', 1).to_int();
|
||||
Variant arr = get_array();
|
||||
|
||||
Variant value = arr.get(idx);
|
||||
UndoRedo *ur = EditorNode::get_singleton()->get_undo_redo();
|
||||
|
||||
ur->create_action(TTR("Change Array Value"));
|
||||
ur->add_do_method(this,"_set_value",idx,p_value);
|
||||
ur->add_undo_method(this,"_set_value",idx,value);
|
||||
ur->add_do_method(this,"_notif_changev",p_name);
|
||||
ur->add_undo_method(this,"_notif_changev",p_name);
|
||||
ur->add_do_method(this, "_set_value", idx, p_value);
|
||||
ur->add_undo_method(this, "_set_value", idx, value);
|
||||
ur->add_do_method(this, "_notif_changev", p_name);
|
||||
ur->add_undo_method(this, "_notif_changev", p_name);
|
||||
ur->commit_action();
|
||||
return true;
|
||||
}
|
||||
@@ -173,37 +169,37 @@ bool ArrayPropertyEdit::_set(const StringName& p_name, const Variant& p_value){
|
||||
return false;
|
||||
}
|
||||
|
||||
bool ArrayPropertyEdit::_get(const StringName& p_name,Variant &r_ret) const {
|
||||
bool ArrayPropertyEdit::_get(const StringName &p_name, Variant &r_ret) const {
|
||||
|
||||
Variant arr = get_array();
|
||||
//int size = arr.call("size");
|
||||
|
||||
String pn=p_name;
|
||||
String pn = p_name;
|
||||
if (pn.begins_with("array/")) {
|
||||
|
||||
if (pn=="array/size") {
|
||||
r_ret=arr.call("size");
|
||||
if (pn == "array/size") {
|
||||
r_ret = arr.call("size");
|
||||
return true;
|
||||
}
|
||||
if (pn=="array/page") {
|
||||
r_ret=page;
|
||||
if (pn == "array/page") {
|
||||
r_ret = page;
|
||||
return true;
|
||||
}
|
||||
} else if (pn.begins_with("indices")) {
|
||||
|
||||
if (pn.find("_")!=-1) {
|
||||
if (pn.find("_") != -1) {
|
||||
//type
|
||||
int idx=pn.get_slicec('/',1).get_slicec('_',0).to_int();
|
||||
int idx = pn.get_slicec('/', 1).get_slicec('_', 0).to_int();
|
||||
bool valid;
|
||||
r_ret=arr.get(idx,&valid);
|
||||
r_ret = arr.get(idx, &valid);
|
||||
if (valid)
|
||||
r_ret=r_ret.get_type();
|
||||
r_ret = r_ret.get_type();
|
||||
return valid;
|
||||
|
||||
} else {
|
||||
int idx=pn.get_slicec('/',1).to_int();
|
||||
int idx = pn.get_slicec('/', 1).to_int();
|
||||
bool valid;
|
||||
r_ret=arr.get(idx,&valid);
|
||||
r_ret = arr.get(idx, &valid);
|
||||
return valid;
|
||||
}
|
||||
}
|
||||
@@ -211,70 +207,67 @@ bool ArrayPropertyEdit::_get(const StringName& p_name,Variant &r_ret) const {
|
||||
return false;
|
||||
}
|
||||
|
||||
void ArrayPropertyEdit::_get_property_list( List<PropertyInfo> *p_list) const{
|
||||
void ArrayPropertyEdit::_get_property_list(List<PropertyInfo> *p_list) const {
|
||||
|
||||
Variant arr = get_array();
|
||||
int size = arr.call("size");
|
||||
|
||||
p_list->push_back( PropertyInfo(Variant::INT,"array/size",PROPERTY_HINT_RANGE,"0,100000,1") );
|
||||
int pages = size/ITEMS_PER_PAGE;
|
||||
if (pages>0)
|
||||
p_list->push_back( PropertyInfo(Variant::INT,"array/page",PROPERTY_HINT_RANGE,"0,"+itos(pages)+",1") );
|
||||
p_list->push_back(PropertyInfo(Variant::INT, "array/size", PROPERTY_HINT_RANGE, "0,100000,1"));
|
||||
int pages = size / ITEMS_PER_PAGE;
|
||||
if (pages > 0)
|
||||
p_list->push_back(PropertyInfo(Variant::INT, "array/page", PROPERTY_HINT_RANGE, "0," + itos(pages) + ",1"));
|
||||
|
||||
int offset=page*ITEMS_PER_PAGE;
|
||||
int offset = page * ITEMS_PER_PAGE;
|
||||
|
||||
int items=MIN(size-offset,ITEMS_PER_PAGE);
|
||||
int items = MIN(size - offset, ITEMS_PER_PAGE);
|
||||
|
||||
for (int i = 0; i < items; i++) {
|
||||
|
||||
for(int i=0;i<items;i++) {
|
||||
Variant v = arr.get(i + offset);
|
||||
bool is_typed = arr.get_type() != Variant::ARRAY || subtype != Variant::NIL;
|
||||
|
||||
Variant v=arr.get(i+offset);
|
||||
bool is_typed = arr.get_type()!=Variant::ARRAY || subtype!=Variant::NIL;
|
||||
|
||||
if (!is_typed) {
|
||||
p_list->push_back(PropertyInfo(Variant::INT,"indices/"+itos(i+offset)+"_type",PROPERTY_HINT_ENUM,vtypes));
|
||||
p_list->push_back(PropertyInfo(Variant::INT, "indices/" + itos(i + offset) + "_type", PROPERTY_HINT_ENUM, vtypes));
|
||||
}
|
||||
|
||||
if (is_typed || v.get_type()!=Variant::NIL ) {
|
||||
PropertyInfo pi(v.get_type(),"indices/"+itos(i+offset));
|
||||
if(subtype!=Variant::NIL) {
|
||||
|
||||
if (is_typed || v.get_type() != Variant::NIL) {
|
||||
PropertyInfo pi(v.get_type(), "indices/" + itos(i + offset));
|
||||
if (subtype != Variant::NIL) {
|
||||
pi.type = Variant::Type(subtype);
|
||||
pi.hint = PropertyHint(subtype_hint);
|
||||
pi.hint_string = subtype_hint_string;
|
||||
} else if (v.get_type()==Variant::OBJECT) {
|
||||
pi.hint=PROPERTY_HINT_RESOURCE_TYPE;
|
||||
pi.hint_string="Resource";
|
||||
} else if (v.get_type() == Variant::OBJECT) {
|
||||
pi.hint = PROPERTY_HINT_RESOURCE_TYPE;
|
||||
pi.hint_string = "Resource";
|
||||
}
|
||||
|
||||
|
||||
p_list->push_back(pi);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
void ArrayPropertyEdit::edit(Object* p_obj,const StringName& p_prop,const String& p_hint_string,Variant::Type p_deftype) {
|
||||
void ArrayPropertyEdit::edit(Object *p_obj, const StringName &p_prop, const String &p_hint_string, Variant::Type p_deftype) {
|
||||
|
||||
page=0;
|
||||
property=p_prop;
|
||||
obj=p_obj->get_instance_ID();
|
||||
default_type=p_deftype;
|
||||
page = 0;
|
||||
property = p_prop;
|
||||
obj = p_obj->get_instance_ID();
|
||||
default_type = p_deftype;
|
||||
|
||||
if(!p_hint_string.empty()) {
|
||||
if (!p_hint_string.empty()) {
|
||||
int hint_subtype_seperator = p_hint_string.find(":");
|
||||
if(hint_subtype_seperator >= 0) {
|
||||
String subtype_string = p_hint_string.substr(0,hint_subtype_seperator);
|
||||
|
||||
if (hint_subtype_seperator >= 0) {
|
||||
String subtype_string = p_hint_string.substr(0, hint_subtype_seperator);
|
||||
|
||||
int slash_pos = subtype_string.find("/");
|
||||
if(slash_pos >= 0) {
|
||||
subtype_hint = PropertyHint(subtype_string.substr(slash_pos+1, subtype_string.size()-slash_pos-1).to_int());
|
||||
subtype_string = subtype_string.substr(0,slash_pos);
|
||||
if (slash_pos >= 0) {
|
||||
subtype_hint = PropertyHint(subtype_string.substr(slash_pos + 1, subtype_string.size() - slash_pos - 1).to_int());
|
||||
subtype_string = subtype_string.substr(0, slash_pos);
|
||||
}
|
||||
|
||||
subtype_hint_string = p_hint_string.substr(hint_subtype_seperator+1, p_hint_string.size() - hint_subtype_seperator-1);
|
||||
subtype=Variant::Type(subtype_string.to_int());
|
||||
|
||||
subtype_hint_string = p_hint_string.substr(hint_subtype_seperator + 1, p_hint_string.size() - hint_subtype_seperator - 1);
|
||||
subtype = Variant::Type(subtype_string.to_int());
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Node *ArrayPropertyEdit::get_node() {
|
||||
@@ -288,23 +281,22 @@ Node *ArrayPropertyEdit::get_node() {
|
||||
|
||||
void ArrayPropertyEdit::_bind_methods() {
|
||||
|
||||
ClassDB::bind_method(D_METHOD("_set_size"),&ArrayPropertyEdit::_set_size);
|
||||
ClassDB::bind_method(D_METHOD("_set_value"),&ArrayPropertyEdit::_set_value);
|
||||
ClassDB::bind_method(D_METHOD("_notif_change"),&ArrayPropertyEdit::_notif_change);
|
||||
ClassDB::bind_method(D_METHOD("_notif_changev"),&ArrayPropertyEdit::_notif_changev);
|
||||
ClassDB::bind_method(D_METHOD("_set_size"), &ArrayPropertyEdit::_set_size);
|
||||
ClassDB::bind_method(D_METHOD("_set_value"), &ArrayPropertyEdit::_set_value);
|
||||
ClassDB::bind_method(D_METHOD("_notif_change"), &ArrayPropertyEdit::_notif_change);
|
||||
ClassDB::bind_method(D_METHOD("_notif_changev"), &ArrayPropertyEdit::_notif_changev);
|
||||
}
|
||||
|
||||
ArrayPropertyEdit::ArrayPropertyEdit()
|
||||
{
|
||||
page=0;
|
||||
for(int i=0;i<Variant::VARIANT_MAX;i++) {
|
||||
ArrayPropertyEdit::ArrayPropertyEdit() {
|
||||
page = 0;
|
||||
for (int i = 0; i < Variant::VARIANT_MAX; i++) {
|
||||
|
||||
if (i>0)
|
||||
vtypes+=",";
|
||||
vtypes+=Variant::get_type_name( Variant::Type(i) );
|
||||
if (i > 0)
|
||||
vtypes += ",";
|
||||
vtypes += Variant::get_type_name(Variant::Type(i));
|
||||
}
|
||||
default_type=Variant::NIL;
|
||||
subtype=Variant::NIL;
|
||||
subtype_hint=PROPERTY_HINT_NONE;
|
||||
subtype_hint_string="";
|
||||
default_type = Variant::NIL;
|
||||
subtype = Variant::NIL;
|
||||
subtype_hint = PROPERTY_HINT_NONE;
|
||||
subtype_hint_string = "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user