123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120 |
- /*************************************************************************/
- /* variant.cpp */
- /*************************************************************************/
- /* This file is part of: */
- /* GODOT ENGINE */
- /* http://www.godotengine.org */
- /*************************************************************************/
- /* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
- /* */
- /* 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. */
- /*************************************************************************/
- #include "variant.h"
- #include "resource.h"
- #include "print_string.h"
- #include "scene/main/node.h"
- #include "scene/gui/control.h"
- #include "io/marshalls.h"
- #include "core_string_names.h"
- #include "variant_parser.h"
- String Variant::get_type_name(Variant::Type p_type) {
- switch( p_type ) {
- case NIL: {
- return "Nil";
- } break;
- // atomic types
- case BOOL: {
- return "bool";
- } break;
- case INT: {
- return "int";
- } break;
- case REAL: {
- return "float";
- } break;
- case STRING: {
- return "String";
- } break;
- // math types
- case VECTOR2: {
- return "Vector2";
- } break;
- case RECT2: {
- return "Rect2";
- } break;
- case MATRIX32: {
- return "Matrix32";
- } break;
- case VECTOR3: {
- return "Vector3";
- } break;
- case PLANE: {
- return "Plane";
- } break;
- /*
- case QUAT: {
- } break;*/
- case _AABB: {
- return "AABB";
- } break;
- case QUAT: {
- return "Quat";
- } break;
- case MATRIX3: {
- return "Matrix3";
- } break;
- case TRANSFORM: {
- return "Transform";
- } break;
- // misc types
- case COLOR: {
- return "Color";
- } break;
- case IMAGE: {
- return "Image";
- } break;
- case _RID: {
- return "RID";
- } break;
- case OBJECT: {
- return "Object";
- } break;
- case NODE_PATH: {
- return "NodePath";
- } break;
- case INPUT_EVENT: {
- return "InputEvent";
- } break;
- case DICTIONARY: {
- return "Dictionary";
- } break;
- case ARRAY: {
- return "Array";
- } break;
- // arrays
- case RAW_ARRAY: {
- return "RawArray";
- } break;
- case INT_ARRAY: {
- return "IntArray";
- } break;
- case REAL_ARRAY: {
- return "RealArray";
- } break;
- case STRING_ARRAY: {
- return "StringArray";
- } break;
- case VECTOR2_ARRAY: {
- return "Vector2Array";
- } break;
- case VECTOR3_ARRAY: {
- return "Vector3Array";
- } break;
- case COLOR_ARRAY: {
- return "ColorArray";
- } break;
- default: {}
- }
- return "";
- }
- bool Variant::can_convert(Variant::Type p_type_from,Variant::Type p_type_to) {
- if (p_type_from==p_type_to)
- return true;
- if (p_type_to==NIL && p_type_from!=NIL) //nil can convert to anything
- return true;
- if (p_type_from == NIL) {
- return (p_type_to == OBJECT);
- };
- const Type *valid_types=NULL;
- const Type *invalid_types=NULL;
- switch(p_type_to) {
- case BOOL: {
- static const Type valid[]={
- INT,
- REAL,
- STRING,
- NIL,
- };
- valid_types=valid;
- } break;
- case INT: {
- static const Type valid[]={
- BOOL,
- REAL,
- STRING,
- NIL,
- };
- valid_types=valid;
- } break;
- case REAL: {
- static const Type valid[]={
- BOOL,
- INT,
- STRING,
- NIL,
- };
- valid_types=valid;
- } break;
- case STRING: {
- static const Type invalid[]={
- OBJECT,
- IMAGE,
- NIL
- };
- invalid_types=invalid;
- } break;
- case MATRIX32: {
- static const Type valid[]={
- TRANSFORM,
- NIL
- };
- valid_types=valid;
- } break;
- case QUAT: {
- static const Type valid[]={
- MATRIX3,
- NIL
- };
- valid_types=valid;
- } break;
- case MATRIX3: {
- static const Type valid[]={
- QUAT,
- NIL
- };
- valid_types=valid;
- } break;
- case TRANSFORM: {
- static const Type valid[]={
- MATRIX32,
- QUAT,
- MATRIX3,
- NIL
- };
- valid_types=valid;
- } break;
- case COLOR: {
- static const Type valid[] = {
- STRING,
- INT,
- NIL,
- };
- valid_types = valid;
- } break;
- case _RID: {
- static const Type valid[]={
- OBJECT,
- NIL
- };
- valid_types=valid;
- } break;
- case OBJECT: {
- static const Type valid[]={
- NIL
- };
- valid_types=valid;
- } break;
- case NODE_PATH: {
- static const Type valid[]={
- STRING,
- NIL
- };
- valid_types=valid;
- } break;
- case ARRAY: {
- static const Type valid[]={
- RAW_ARRAY,
- INT_ARRAY,
- STRING_ARRAY,
- REAL_ARRAY,
- COLOR_ARRAY,
- VECTOR2_ARRAY,
- VECTOR3_ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- // arrays
- case RAW_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case INT_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case REAL_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case STRING_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case VECTOR2_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case VECTOR3_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case COLOR_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- default: {}
- }
- if (valid_types) {
- int i=0;
- while(valid_types[i]!=NIL) {
- if (p_type_from==valid_types[i])
- return true;
- i++;
- }
- } else if (invalid_types) {
- int i=0;
- while(invalid_types[i]!=NIL) {
- if (p_type_from==invalid_types[i])
- return false;
- i++;
- }
- return true;
- }
- return false;
- }
- bool Variant::can_convert_strict(Variant::Type p_type_from,Variant::Type p_type_to) {
- if (p_type_from==p_type_to)
- return true;
- if (p_type_to==NIL && p_type_from!=NIL) //nil can convert to anything
- return true;
- if (p_type_from == NIL) {
- return (p_type_to == OBJECT);
- };
- const Type *valid_types=NULL;
- switch(p_type_to) {
- case BOOL: {
- static const Type valid[]={
- INT,
- REAL,
- //STRING,
- NIL,
- };
- valid_types=valid;
- } break;
- case INT: {
- static const Type valid[]={
- BOOL,
- REAL,
- //STRING,
- NIL,
- };
- valid_types=valid;
- } break;
- case REAL: {
- static const Type valid[]={
- BOOL,
- INT,
- //STRING,
- NIL,
- };
- valid_types=valid;
- } break;
- case STRING: {
- static const Type valid[]={
- NODE_PATH,
- NIL
- };
- valid_types=valid;
- } break;
- case MATRIX32: {
- static const Type valid[]={
- TRANSFORM,
- NIL
- };
- valid_types=valid;
- } break;
- case QUAT: {
- static const Type valid[]={
- MATRIX3,
- NIL
- };
- valid_types=valid;
- } break;
- case MATRIX3: {
- static const Type valid[]={
- QUAT,
- NIL
- };
- valid_types=valid;
- } break;
- case TRANSFORM: {
- static const Type valid[]={
- MATRIX32,
- QUAT,
- MATRIX3,
- NIL
- };
- valid_types=valid;
- } break;
- case COLOR: {
- static const Type valid[] = {
- STRING,
- INT,
- NIL,
- };
- valid_types = valid;
- } break;
- case _RID: {
- static const Type valid[]={
- OBJECT,
- NIL
- };
- valid_types=valid;
- } break;
- case OBJECT: {
- static const Type valid[]={
- NIL
- };
- valid_types=valid;
- } break;
- case NODE_PATH: {
- static const Type valid[]={
- STRING,
- NIL
- };
- valid_types=valid;
- } break;
- case ARRAY: {
- static const Type valid[]={
- RAW_ARRAY,
- INT_ARRAY,
- STRING_ARRAY,
- REAL_ARRAY,
- COLOR_ARRAY,
- VECTOR2_ARRAY,
- VECTOR3_ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- // arrays
- case RAW_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case INT_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case REAL_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case STRING_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case VECTOR2_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case VECTOR3_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- case COLOR_ARRAY: {
- static const Type valid[]={
- ARRAY,
- NIL
- };
- valid_types=valid;
- } break;
- default: {}
- }
- if (valid_types) {
- int i=0;
- while(valid_types[i]!=NIL) {
- if (p_type_from==valid_types[i])
- return true;
- i++;
- }
- }
- return false;
- }
- bool Variant::operator==(const Variant& p_variant) const {
- if (type!=p_variant.type) //evaluation of operator== needs to be more strict
- return false;
- bool v;
- Variant r;
- evaluate(OP_EQUAL,*this,p_variant,r,v);
- return r;
- }
- bool Variant::operator!=(const Variant& p_variant) const {
- if (type!=p_variant.type) //evaluation of operator== needs to be more strict
- return true;
- bool v;
- Variant r;
- evaluate(OP_NOT_EQUAL,*this,p_variant,r,v);
- return r;
- }
- bool Variant::operator<(const Variant& p_variant) const {
- if (type!=p_variant.type) //if types differ, then order by type first
- return type<p_variant.type;
- bool v;
- Variant r;
- evaluate(OP_LESS,*this,p_variant,r,v);
- return r;
- }
- bool Variant::is_zero() const {
- switch( type ) {
- case NIL: {
- return true;
- } break;
- // atomic types
- case BOOL: {
- return _data._bool==false;
- } break;
- case INT: {
- return _data._int==0;
- } break;
- case REAL: {
- return _data._real==0;
- } break;
- case STRING: {
- return *reinterpret_cast<const String*>(_data._mem)==String();
- } break;
- // math types
- case VECTOR2: {
- return *reinterpret_cast<const Vector2*>(_data._mem)==Vector2();
- } break;
- case RECT2: {
- return *reinterpret_cast<const Rect2*>(_data._mem)==Rect2();
- } break;
- case MATRIX32: {
- return *_data._matrix32==Matrix32();
- } break;
- case VECTOR3: {
- return *reinterpret_cast<const Vector3*>(_data._mem)==Vector3();
- } break;
- case PLANE: {
- return *reinterpret_cast<const Plane*>(_data._mem)==Plane();
- } break;
- /*
- case QUAT: {
- } break;*/
- case _AABB: {
- return *_data._aabb==AABB();
- } break;
- case QUAT: {
- return *reinterpret_cast<const Quat*>(_data._mem)==Quat();
- } break;
- case MATRIX3: {
- return *_data._matrix3==Matrix3();
- } break;
- case TRANSFORM: {
- return *_data._transform == Transform();
- } break;
- // misc types
- case COLOR: {
- return *reinterpret_cast<const Color*>(_data._mem)==Color();
- } break;
- case IMAGE: {
- return _data._image->empty();
- } break;
- case _RID: {
- return *reinterpret_cast<const RID*>(_data._mem)==RID();
- } break;
- case OBJECT: {
- return _get_obj().obj==NULL;
- } break;
- case NODE_PATH: {
- return reinterpret_cast<const NodePath*>(_data._mem)->is_empty();
- } break;
- case INPUT_EVENT: {
- return _data._input_event->type==InputEvent::NONE;
- } break;
- case DICTIONARY: {
- return reinterpret_cast<const Dictionary*>(_data._mem)->empty();
- } break;
- case ARRAY: {
- return reinterpret_cast<const Array*>(_data._mem)->empty();
- } break;
- // arrays
- case RAW_ARRAY: {
- return reinterpret_cast<const PoolVector<uint8_t>*>(_data._mem)->size()==0;
- } break;
- case INT_ARRAY: {
- return reinterpret_cast<const PoolVector<int>*>(_data._mem)->size()==0;
- } break;
- case REAL_ARRAY: {
- return reinterpret_cast<const PoolVector<real_t>*>(_data._mem)->size()==0;
- } break;
- case STRING_ARRAY: {
- return reinterpret_cast<const PoolVector<String>*>(_data._mem)->size()==0;
- } break;
- case VECTOR2_ARRAY: {
- return reinterpret_cast<const PoolVector<Vector2>*>(_data._mem)->size()==0;
- } break;
- case VECTOR3_ARRAY: {
- return reinterpret_cast<const PoolVector<Vector3>*>(_data._mem)->size()==0;
- } break;
- case COLOR_ARRAY: {
- return reinterpret_cast<const PoolVector<Color>*>(_data._mem)->size()==0;
- } break;
- default: {}
- }
- return false;
- }
- bool Variant::is_one() const {
- switch( type ) {
- case NIL: {
- return true;
- } break;
- // atomic types
- case BOOL: {
- return _data._bool==true;
- } break;
- case INT: {
- return _data._int==1;
- } break;
- case REAL: {
- return _data._real==1;
- } break;
- case VECTOR2: {
- return *reinterpret_cast<const Vector2*>(_data._mem)==Vector2(1,1);
- } break;
- case RECT2: {
- return *reinterpret_cast<const Rect2*>(_data._mem)==Rect2(1,1,1,1);
- } break;
- case VECTOR3: {
- return *reinterpret_cast<const Vector3*>(_data._mem)==Vector3(1,1,1);
- } break;
- case PLANE: {
- return *reinterpret_cast<const Plane*>(_data._mem)==Plane(1,1,1,1);
- } break;
- case COLOR: {
- return *reinterpret_cast<const Color*>(_data._mem)==Color(1,1,1,1);
- } break;
- default: { return !is_zero(); }
- }
- return false;
- }
- void Variant::reference(const Variant& p_variant) {
- if (this == &p_variant)
- return;
- clear();
- type=p_variant.type;
- switch( p_variant.type ) {
- case NIL: {
- // none
- } break;
- // atomic types
- case BOOL: {
- _data._bool=p_variant._data._bool;
- } break;
- case INT: {
- _data._int=p_variant._data._int;
- } break;
- case REAL: {
- _data._real=p_variant._data._real;
- } break;
- case STRING: {
- memnew_placement( _data._mem, String( *reinterpret_cast<const String*>(p_variant._data._mem) ) );
- } break;
- // math types
- case VECTOR2: {
- memnew_placement( _data._mem, Vector2( *reinterpret_cast<const Vector2*>(p_variant._data._mem) ) );
- } break;
- case RECT2: {
- memnew_placement( _data._mem, Rect2( *reinterpret_cast<const Rect2*>(p_variant._data._mem) ) );
- } break;
- case MATRIX32: {
- _data._matrix32 = memnew( Matrix32( *p_variant._data._matrix32 ) );
- } break;
- case VECTOR3: {
- memnew_placement( _data._mem, Vector3( *reinterpret_cast<const Vector3*>(p_variant._data._mem) ) );
- } break;
- case PLANE: {
- memnew_placement( _data._mem, Plane( *reinterpret_cast<const Plane*>(p_variant._data._mem) ) );
- } break;
- /*
- case QUAT: {
- } break;*/
- case _AABB: {
- _data._aabb = memnew( AABB( *p_variant._data._aabb ) );
- } break;
- case QUAT: {
- memnew_placement( _data._mem, Quat( *reinterpret_cast<const Quat*>(p_variant._data._mem) ) );
- } break;
- case MATRIX3: {
- _data._matrix3 = memnew( Matrix3( *p_variant._data._matrix3 ) );
- } break;
- case TRANSFORM: {
- _data._transform = memnew( Transform( *p_variant._data._transform ) );
- } break;
- // misc types
- case COLOR: {
- memnew_placement( _data._mem, Color( *reinterpret_cast<const Color*>(p_variant._data._mem) ) );
- } break;
- case IMAGE: {
- _data._image = memnew( Image( *p_variant._data._image ) );
- } break;
- case _RID: {
- memnew_placement( _data._mem, RID( *reinterpret_cast<const RID*>(p_variant._data._mem) ) );
- } break;
- case OBJECT: {
- memnew_placement( _data._mem, ObjData( p_variant._get_obj() ) );
- } break;
- case NODE_PATH: {
- memnew_placement( _data._mem, NodePath( *reinterpret_cast<const NodePath*>(p_variant._data._mem) ) );
- } break;
- case INPUT_EVENT: {
- _data._input_event= memnew( InputEvent( *p_variant._data._input_event ) );
- } break;
- case DICTIONARY: {
- memnew_placement( _data._mem, Dictionary( *reinterpret_cast<const Dictionary*>(p_variant._data._mem) ) );
- } break;
- case ARRAY: {
- memnew_placement( _data._mem, Array ( *reinterpret_cast<const Array*>(p_variant._data._mem) ) );
- } break;
- // arrays
- case RAW_ARRAY: {
- memnew_placement( _data._mem, PoolVector<uint8_t> ( *reinterpret_cast<const PoolVector<uint8_t>*>(p_variant._data._mem) ) );
- } break;
- case INT_ARRAY: {
- memnew_placement( _data._mem, PoolVector<int> ( *reinterpret_cast<const PoolVector<int>*>(p_variant._data._mem) ) );
- } break;
- case REAL_ARRAY: {
- memnew_placement( _data._mem, PoolVector<real_t> ( *reinterpret_cast<const PoolVector<real_t>*>(p_variant._data._mem) ) );
- } break;
- case STRING_ARRAY: {
- memnew_placement( _data._mem, PoolVector<String> ( *reinterpret_cast<const PoolVector<String>*>(p_variant._data._mem) ) );
- } break;
- case VECTOR2_ARRAY: {
- memnew_placement( _data._mem, PoolVector<Vector2> ( *reinterpret_cast<const PoolVector<Vector2>*>(p_variant._data._mem) ) );
- } break;
- case VECTOR3_ARRAY: {
- memnew_placement( _data._mem, PoolVector<Vector3> ( *reinterpret_cast<const PoolVector<Vector3>*>(p_variant._data._mem) ) );
- } break;
- case COLOR_ARRAY: {
- memnew_placement( _data._mem, PoolVector<Color> ( *reinterpret_cast<const PoolVector<Color>*>(p_variant._data._mem) ) );
- } break;
- default: {}
- }
- }
- void Variant::zero() {
- switch(type) {
- case NIL: break;
- case BOOL: this->_data._bool = false; break;
- case INT: this->_data._int = 0; break;
- case REAL: this->_data._real = 0; break;
- case VECTOR2: *reinterpret_cast<Vector2*>(this->_data._mem) = Vector2(); break;
- case RECT2: *reinterpret_cast<Rect2*>(this->_data._mem) = Rect2(); break;
- case VECTOR3: *reinterpret_cast<Vector3*>(this->_data._mem) = Vector3(); break;
- case PLANE: *reinterpret_cast<Plane*>(this->_data._mem) = Plane(); break;
- case QUAT: *reinterpret_cast<Quat*>(this->_data._mem) = Quat(); break;
- case COLOR: *reinterpret_cast<Color*>(this->_data._mem) = Color(); break;
- default: this->clear(); break;
- }
- }
- void Variant::clear() {
- switch(type) {
- case STRING: {
- reinterpret_cast<String*>(_data._mem)->~String();
- } break;
- /*
- // no point, they don't allocate memory
- VECTOR3,
- PLANE,
- QUAT,
- COLOR,
- VECTOR2,
- RECT2
- */
- case MATRIX32: {
- memdelete( _data._matrix32 );
- } break;
- case _AABB: {
- memdelete( _data._aabb );
- } break;
- case MATRIX3: {
- memdelete( _data._matrix3 );
- } break;
- case TRANSFORM: {
- memdelete( _data._transform );
- } break;
- // misc types
- case IMAGE: {
- memdelete( _data._image );
- } break;
- case NODE_PATH: {
- reinterpret_cast<NodePath*>(_data._mem)->~NodePath();
- } break;
- case OBJECT: {
- _get_obj().obj=NULL;
- _get_obj().ref.unref();
- } break;
- case _RID: {
- // not much need probably
- reinterpret_cast<RID*>(_data._mem)->~RID();
- } break;
- case DICTIONARY: {
- reinterpret_cast<Dictionary*>(_data._mem)->~Dictionary();
- } break;
- case ARRAY: {
- reinterpret_cast<Array*>(_data._mem)->~Array();
- } break;
- case INPUT_EVENT: {
- memdelete( _data._input_event );
- } break;
- // arrays
- case RAW_ARRAY: {
- reinterpret_cast< PoolVector<uint8_t>* >(_data._mem)->~PoolVector<uint8_t>();
- } break;
- case INT_ARRAY: {
- reinterpret_cast< PoolVector<int>* >(_data._mem)->~PoolVector<int>();
- } break;
- case REAL_ARRAY: {
- reinterpret_cast< PoolVector<real_t>* >(_data._mem)->~PoolVector<real_t>();
- } break;
- case STRING_ARRAY: {
- reinterpret_cast< PoolVector<String>* >(_data._mem)->~PoolVector<String>();
- } break;
- case VECTOR2_ARRAY: {
- reinterpret_cast< PoolVector<Vector2>* >(_data._mem)->~PoolVector<Vector2>();
- } break;
- case VECTOR3_ARRAY: {
- reinterpret_cast< PoolVector<Vector3>* >(_data._mem)->~PoolVector<Vector3>();
- } break;
- case COLOR_ARRAY: {
- reinterpret_cast< PoolVector<Color>* >(_data._mem)->~PoolVector<Color>();
- } break;
- default: {} /* not needed */
- }
- type=NIL;
- }
- Variant::operator signed int() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator unsigned int() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator int64_t() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- /*
- Variant::operator long unsigned int() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- };
- */
- Variant::operator uint64_t() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- #ifdef NEED_LONG_INT
- Variant::operator signed long() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- };
- Variant::operator unsigned long() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- };
- #endif
- Variant::operator signed short() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator unsigned short() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator signed char() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator unsigned char() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1 : 0;
- case INT: return _data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_int();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator CharType() const {
- return operator unsigned int();
- }
- Variant::operator float() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1.0 : 0.0;
- case INT: return (float)_data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_double();
- default: {
- return 0;
- }
- }
- return 0;
- }
- Variant::operator double() const {
- switch( type ) {
- case NIL: return 0;
- case BOOL: return _data._bool ? 1.0 : 0.0;
- case INT: return (double)_data._int;
- case REAL: return _data._real;
- case STRING: return operator String().to_double();
- default: {
- return 0;
- }
- }
- return true;
- }
- Variant::operator StringName() const {
- if (type==NODE_PATH) {
- return reinterpret_cast<const NodePath*>(_data._mem)->get_sname();
- }
- return StringName(operator String());
- }
- struct _VariantStrPair {
- String key;
- String value;
- bool operator<(const _VariantStrPair& p) const {
- return key < p.key;
- }
- };
- Variant::operator String() const {
- switch( type ) {
- case NIL: return "Null";
- case BOOL: return _data._bool ? "True" : "False";
- case INT: return itos(_data._int);
- case REAL: return rtos(_data._real);
- case STRING: return *reinterpret_cast<const String*>(_data._mem);
- case VECTOR2: return "("+operator Vector2()+")";
- case RECT2: return "("+operator Rect2()+")";
- case MATRIX32: {
- Matrix32 mat32 = operator Matrix32();
- return "("+Variant(mat32.elements[0]).operator String()+", "+Variant(mat32.elements[1]).operator String()+", "+Variant(mat32.elements[2]).operator String()+")";
- } break;
- case VECTOR3: return "("+operator Vector3()+")";
- case PLANE: return operator Plane();
- //case QUAT:
- case _AABB: return operator AABB();
- case QUAT: return "("+operator Quat()+")";
- case MATRIX3: {
- Matrix3 mat3 = operator Matrix3();
- String mtx("(");
- for (int i=0;i<3;i++) {
- if (i!=0)
- mtx+=", ";
- mtx+="(";
- for (int j=0;j<3;j++) {
- if (j!=0)
- mtx+=", ";
- mtx+=Variant( mat3.elements[i][j] ).operator String();
- }
- mtx+=")";
- }
- return mtx+")";
- } break;
- case TRANSFORM: return operator Transform();
- case NODE_PATH: return operator NodePath();
- case INPUT_EVENT: return operator InputEvent();
- case COLOR: return String::num( operator Color().r)+","+String::num( operator Color().g)+","+String::num( operator Color().b)+","+String::num( operator Color().a) ;
- case DICTIONARY: {
- const Dictionary &d =*reinterpret_cast<const Dictionary*>(_data._mem);
- //const String *K=NULL;
- String str;
- List<Variant> keys;
- d.get_key_list(&keys);
- Vector<_VariantStrPair> pairs;
- for(List<Variant>::Element *E=keys.front();E;E=E->next()) {
- _VariantStrPair sp;
- sp.key=String(E->get());
- sp.value=d[E->get()];
- pairs.push_back(sp);
- }
- pairs.sort();
- for(int i=0;i<pairs.size();i++) {
- if (i>0)
- str+=", ";
- str+="("+pairs[i].key+":"+pairs[i].value+")";
- }
- return str;
- } break;
- case VECTOR2_ARRAY: {
- PoolVector<Vector2> vec = operator PoolVector<Vector2>();
- String str("[");
- for(int i=0;i<vec.size();i++) {
- if (i>0)
- str+=", ";
- str=str+Variant( vec[i] );
- }
- str += "]";
- return str;
- } break;
- case VECTOR3_ARRAY: {
- PoolVector<Vector3> vec = operator PoolVector<Vector3>();
- String str("[");
- for(int i=0;i<vec.size();i++) {
- if (i>0)
- str+=", ";
- str=str+Variant( vec[i] );
- }
- str += "]";
- return str;
- } break;
- case STRING_ARRAY: {
- PoolVector<String> vec = operator PoolVector<String>();
- String str("[");
- for(int i=0;i<vec.size();i++) {
- if (i>0)
- str+=", ";
- str=str+vec[i];
- }
- str += "]";
- return str;
- } break;
- case INT_ARRAY: {
- PoolVector<int> vec = operator PoolVector<int>();
- String str("[");
- for(int i=0;i<vec.size();i++) {
- if (i>0)
- str+=", ";
- str=str+itos(vec[i]);
- }
- str += "]";
- return str;
- } break;
- case REAL_ARRAY: {
- PoolVector<real_t> vec = operator PoolVector<real_t>();
- String str("[");
- for(int i=0;i<vec.size();i++) {
- if (i>0)
- str+=", ";
- str=str+rtos(vec[i]);
- }
- str += "]";
- return str;
- } break;
- case ARRAY: {
- Array arr = operator Array();
- String str("[");
- for (int i=0; i<arr.size(); i++) {
- if (i)
- str+=", ";
- str += String(arr[i]);
- };
- str += "]";
- return str;
- } break;
- case OBJECT: {
- if (_get_obj().obj) {
- #ifdef DEBUG_ENABLED
- if (ScriptDebugger::get_singleton() && _get_obj().ref.is_null()) {
- //only if debugging!
- if (!ObjectDB::instance_validate(_get_obj().obj)) {
- return "[Deleted Object]";
- };
- };
- #endif
- return "["+_get_obj().obj->get_class()+":"+itos(_get_obj().obj->get_instance_ID())+"]";
- } else
- return "[Object:null]";
- } break;
- default: {
- return "["+get_type_name(type)+"]";
- }
- }
- return "";
- }
- Variant::operator Vector2() const {
- if (type==VECTOR2)
- return *reinterpret_cast<const Vector2*>(_data._mem);
- else if (type==VECTOR3)
- return Vector2(reinterpret_cast<const Vector3*>(_data._mem)->x,reinterpret_cast<const Vector3*>(_data._mem)->y);
- else
- return Vector2();
- }
- Variant::operator Rect2() const {
- if (type==RECT2)
- return *reinterpret_cast<const Rect2*>(_data._mem);
- else
- return Rect2();
- }
- Variant::operator Vector3() const {
- if (type==VECTOR3)
- return *reinterpret_cast<const Vector3*>(_data._mem);
- else
- return Vector3();
- }
- Variant::operator Plane() const {
- if (type==PLANE)
- return *reinterpret_cast<const Plane*>(_data._mem);
- else
- return Plane();
- }
- Variant::operator AABB() const {
- if (type==_AABB)
- return *_data._aabb;
- else
- return AABB();
- }
- Variant::operator Matrix3() const {
- if (type==MATRIX3)
- return *_data._matrix3;
- else if (type==QUAT)
- return *reinterpret_cast<const Quat*>(_data._mem);
- else if (type==TRANSFORM)
- return _data._transform->basis;
- else
- return Matrix3();
- }
- Variant::operator Quat() const {
- if (type==QUAT)
- return *reinterpret_cast<const Quat*>(_data._mem);
- else if (type==MATRIX3)
- return *_data._matrix3;
- else if (type==TRANSFORM)
- return _data._transform->basis;
- else
- return Quat();
- }
- Variant::operator Transform() const {
- if (type==TRANSFORM)
- return *_data._transform;
- else if (type==MATRIX3)
- return Transform(*_data._matrix3,Vector3());
- else if (type==QUAT)
- return Transform(Matrix3(*reinterpret_cast<const Quat*>(_data._mem)),Vector3());
- else
- return Transform();
- }
- Variant::operator Matrix32() const {
- if (type==MATRIX32) {
- return *_data._matrix32;
- } else if (type==TRANSFORM) {
- const Transform& t = *_data._transform;;
- Matrix32 m;
- m.elements[0][0]=t.basis.elements[0][0];
- m.elements[0][1]=t.basis.elements[1][0];
- m.elements[1][0]=t.basis.elements[0][1];
- m.elements[1][1]=t.basis.elements[1][1];
- m.elements[2][0]=t.origin[0];
- m.elements[2][1]=t.origin[1];
- return m;
- } else
- return Matrix32();
- }
- Variant::operator Color() const {
- if (type==COLOR)
- return *reinterpret_cast<const Color*>(_data._mem);
- else if (type==STRING)
- return Color::html( operator String() );
- else if (type==INT)
- return Color::hex( operator int() );
- else
- return Color();
- }
- Variant::operator Image() const {
- if (type==IMAGE)
- return *_data._image;
- else
- return Image();
- }
- Variant::operator NodePath() const {
- if (type==NODE_PATH)
- return *reinterpret_cast<const NodePath*>(_data._mem);
- else if (type==STRING)
- return NodePath(operator String());
- else
- return NodePath();
- }
- Variant::operator RefPtr() const {
- if (type==OBJECT)
- return _get_obj().ref;
- else
- return RefPtr();
- }
- Variant::operator RID() const {
- if (type==_RID)
- return *reinterpret_cast<const RID*>(_data._mem);
- else if (type==OBJECT && !_get_obj().ref.is_null()) {
- return _get_obj().ref.get_rid();
- } else if (type==OBJECT && _get_obj().obj) {
- Variant::CallError ce;
- Variant ret = _get_obj().obj->call(CoreStringNames::get_singleton()->get_rid,NULL,0,ce);
- if (ce.error==Variant::CallError::CALL_OK && ret.get_type()==Variant::_RID) {
- return ret;
- }
- return RID();
- } else {
- return RID();
- }
- }
- Variant::operator Object*() const {
- if (type==OBJECT)
- return _get_obj().obj;
- else
- return NULL;
- }
- Variant::operator Node*() const {
- if (type==OBJECT)
- return _get_obj().obj?_get_obj().obj->cast_to<Node>():NULL;
- else
- return NULL;
- }
- Variant::operator Control*() const {
- if (type==OBJECT)
- return _get_obj().obj?_get_obj().obj->cast_to<Control>():NULL;
- else
- return NULL;
- }
- Variant::operator InputEvent() const {
- if (type==INPUT_EVENT)
- return *reinterpret_cast<const InputEvent*>(_data._input_event);
- else
- return InputEvent();
- }
- Variant::operator Dictionary() const {
- if (type==DICTIONARY)
- return *reinterpret_cast<const Dictionary*>(_data._mem);
- else
- return Dictionary();
- }
- template<class DA,class SA>
- inline DA _convert_array(const SA& p_array) {
- DA da;
- da.resize(p_array.size());
- for(int i=0;i<p_array.size();i++) {
- da.set( i, Variant(p_array.get(i)) );
- }
- return da;
- }
- template<class DA>
- inline DA _convert_array_from_variant(const Variant& p_variant) {
- switch(p_variant.get_type()) {
- case Variant::ARRAY: { return _convert_array<DA,Array >( p_variant.operator Array () ); }
- case Variant::RAW_ARRAY: { return _convert_array<DA,PoolVector<uint8_t> >( p_variant.operator PoolVector<uint8_t> () ); }
- case Variant::INT_ARRAY: { return _convert_array<DA,PoolVector<int> >( p_variant.operator PoolVector<int> () ); }
- case Variant::REAL_ARRAY: { return _convert_array<DA,PoolVector<real_t> >( p_variant.operator PoolVector<real_t> () ); }
- case Variant::STRING_ARRAY: { return _convert_array<DA,PoolVector<String> >( p_variant.operator PoolVector<String> () ); }
- case Variant::VECTOR2_ARRAY: { return _convert_array<DA,PoolVector<Vector2> >( p_variant.operator PoolVector<Vector2> () ); }
- case Variant::VECTOR3_ARRAY: { return _convert_array<DA,PoolVector<Vector3> >( p_variant.operator PoolVector<Vector3> () ); }
- case Variant::COLOR_ARRAY: { return _convert_array<DA,PoolVector<Color> >( p_variant.operator PoolVector<Color>() ); }
- default: { return DA(); }
- }
- return DA();
- }
- Variant::operator Array() const {
- if (type==ARRAY)
- return *reinterpret_cast<const Array*>(_data._mem);
- else
- return _convert_array_from_variant<Array >(*this);
- }
- Variant::operator PoolVector<uint8_t>() const {
- if (type==RAW_ARRAY)
- return *reinterpret_cast<const PoolVector<uint8_t>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<uint8_t> >(*this);
- }
- Variant::operator PoolVector<int>() const {
- if (type==INT_ARRAY)
- return *reinterpret_cast<const PoolVector<int>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<int> >(*this);
- }
- Variant::operator PoolVector<real_t>() const {
- if (type==REAL_ARRAY)
- return *reinterpret_cast<const PoolVector<real_t>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<real_t> >(*this);
- }
- Variant::operator PoolVector<String>() const {
- if (type==STRING_ARRAY)
- return *reinterpret_cast<const PoolVector<String>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<String> >(*this);
- }
- Variant::operator PoolVector<Vector3>() const {
- if (type==VECTOR3_ARRAY)
- return *reinterpret_cast<const PoolVector<Vector3>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<Vector3> >(*this);
- }
- Variant::operator PoolVector<Vector2>() const {
- if (type==VECTOR2_ARRAY)
- return *reinterpret_cast<const PoolVector<Vector2>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<Vector2> >(*this);
- }
- Variant::operator PoolVector<Color>() const {
- if (type==COLOR_ARRAY)
- return *reinterpret_cast<const PoolVector<Color>* >(_data._mem);
- else
- return _convert_array_from_variant<PoolVector<Color> >(*this);
- }
- /* helpers */
- Variant::operator Vector<RID>() const {
- Array va= operator Array();
- Vector<RID> rids;
- rids.resize(va.size());
- for(int i=0;i<rids.size();i++)
- rids[i]=va[i];
- return rids;
- }
- Variant::operator Vector<Vector2>() const {
- PoolVector<Vector2> from=operator PoolVector<Vector2>();
- Vector<Vector2> to;
- int len=from.size();
- if (len==0)
- return Vector<Vector2>();
- to.resize(len);
- PoolVector<Vector2>::Read r = from.read();
- Vector2 *w = &to[0];
- for (int i=0;i<len;i++) {
- w[i]=r[i];
- }
- return to;
- }
- Variant::operator PoolVector<Plane>() const {
- Array va= operator Array();
- PoolVector<Plane> planes;
- int va_size=va.size();
- if (va_size==0)
- return planes;
- planes.resize(va_size);
- PoolVector<Plane>::Write w = planes.write();
- for(int i=0;i<va_size;i++)
- w[i]=va[i];
- return planes;
- }
- Variant::operator PoolVector<Face3>() const {
- PoolVector<Vector3> va= operator PoolVector<Vector3>();
- PoolVector<Face3> faces;
- int va_size=va.size();
- if (va_size==0)
- return faces;
- faces.resize(va_size/3);
- PoolVector<Face3>::Write w = faces.write();
- PoolVector<Vector3>::Read r = va.read();
- for(int i=0;i<va_size;i++)
- w[i/3].vertex[i%3]=r[i];
- return faces;
- }
- Variant::operator Vector<Plane>() const {
- Array va= operator Array();
- Vector<Plane> planes;
- int va_size=va.size();
- if (va_size==0)
- return planes;
- planes.resize(va_size);
- for(int i=0;i<va_size;i++)
- planes[i]=va[i];
- return planes;
- }
- Variant::operator Vector<Variant>() const {
- Array from=operator Array();
- Vector<Variant> to;
- int len=from.size();
- to.resize(len);
- for (int i=0;i<len;i++) {
- to[i]=from[i];
- }
- return to;
- }
- Variant::operator Vector<uint8_t>() const {
- PoolVector<uint8_t> from=operator PoolVector<uint8_t>();
- Vector<uint8_t> to;
- int len=from.size();
- to.resize(len);
- for (int i=0;i<len;i++) {
- to[i]=from[i];
- }
- return to;
- }
- Variant::operator Vector<int>() const {
- PoolVector<int> from=operator PoolVector<int>();
- Vector<int> to;
- int len=from.size();
- to.resize(len);
- for (int i=0;i<len;i++) {
- to[i]=from[i];
- }
- return to;
- }
- Variant::operator Vector<real_t>() const {
- PoolVector<real_t> from=operator PoolVector<real_t>();
- Vector<real_t> to;
- int len=from.size();
- to.resize(len);
- for (int i=0;i<len;i++) {
- to[i]=from[i];
- }
- return to;
- }
- Variant::operator Vector<String>() const {
- PoolVector<String> from=operator PoolVector<String>();
- Vector<String> to;
- int len=from.size();
- to.resize(len);
- for (int i=0;i<len;i++) {
- to[i]=from[i];
- }
- return to;
- }
- Variant::operator Vector<Vector3>() const {
- PoolVector<Vector3> from=operator PoolVector<Vector3>();
- Vector<Vector3> to;
- int len=from.size();
- if (len==0)
- return Vector<Vector3>();
- to.resize(len);
- PoolVector<Vector3>::Read r = from.read();
- Vector3 *w = &to[0];
- for (int i=0;i<len;i++) {
- w[i]=r[i];
- }
- return to;
- }
- Variant::operator Vector<Color>() const {
- PoolVector<Color> from=operator PoolVector<Color>();
- Vector<Color> to;
- int len=from.size();
- if (len==0)
- return Vector<Color>();
- to.resize(len);
- PoolVector<Color>::Read r = from.read();
- Color *w = &to[0];
- for (int i=0;i<len;i++) {
- w[i]=r[i];
- }
- return to;
- }
- Variant::operator Margin() const {
- return (Margin)operator int();
- }
- Variant::operator Orientation() const {
- return (Orientation)operator int();
- }
- Variant::operator IP_Address() const {
- if (type==REAL_ARRAY || type==INT_ARRAY || type==RAW_ARRAY) {
- PoolVector<int> addr=operator PoolVector<int>();
- if (addr.size()==4) {
- return IP_Address(addr.get(0),addr.get(1),addr.get(2),addr.get(3));
- }
- }
- return IP_Address( operator String() );
- }
- Variant::Variant(bool p_bool) {
- type=BOOL;
- _data._bool=p_bool;
- }
- /*
- Variant::Variant(long unsigned int p_long) {
- type=INT;
- _data._int=p_long;
- };
- */
- Variant::Variant(signed int p_int) {
- type=INT;
- _data._int=p_int;
- }
- Variant::Variant(unsigned int p_int) {
- type=INT;
- _data._int=p_int;
- }
- #ifdef NEED_LONG_INT
- Variant::Variant(signed long p_int) {
- type=INT;
- _data._int=p_int;
- }
- Variant::Variant(unsigned long p_int) {
- type=INT;
- _data._int=p_int;
- }
- #endif
- Variant::Variant(int64_t p_int) {
- type=INT;
- _data._int=p_int;
- }
- Variant::Variant(uint64_t p_int) {
- type=INT;
- _data._int=p_int;
- }
- Variant::Variant(signed short p_short) {
- type=INT;
- _data._int=p_short;
- }
- Variant::Variant(unsigned short p_short) {
- type=INT;
- _data._int=p_short;
- }
- Variant::Variant(signed char p_char) {
- type=INT;
- _data._int=p_char;
- }
- Variant::Variant(unsigned char p_char) {
- type=INT;
- _data._int=p_char;
- }
- Variant::Variant(float p_float) {
- type=REAL;
- _data._real=p_float;
- }
- Variant::Variant(double p_double) {
- type=REAL;
- _data._real=p_double;
- }
- Variant::Variant(const StringName& p_string) {
- type=STRING;
- memnew_placement( _data._mem, String( p_string.operator String() ) );
- }
- Variant::Variant(const String& p_string) {
- type=STRING;
- memnew_placement( _data._mem, String( p_string ) );
- }
- Variant::Variant(const char * const p_cstring) {
- type=STRING;
- memnew_placement( _data._mem, String( (const char*)p_cstring ) );
- }
- Variant::Variant(const CharType * p_wstring) {
- type=STRING;
- memnew_placement( _data._mem, String( p_wstring ) );
- }
- Variant::Variant(const Vector3& p_vector3) {
- type=VECTOR3;
- memnew_placement( _data._mem, Vector3( p_vector3 ) );
- }
- Variant::Variant(const Vector2& p_vector2) {
- type=VECTOR2;
- memnew_placement( _data._mem, Vector2( p_vector2 ) );
- }
- Variant::Variant(const Rect2& p_rect2) {
- type=RECT2;
- memnew_placement( _data._mem, Rect2( p_rect2 ) );
- }
- Variant::Variant(const Plane& p_plane) {
- type=PLANE;
- memnew_placement( _data._mem, Plane( p_plane ) );
- }
- Variant::Variant(const AABB& p_aabb) {
- type=_AABB;
- _data._aabb = memnew( AABB( p_aabb ) );
- }
- Variant::Variant(const Matrix3& p_matrix) {
- type=MATRIX3;
- _data._matrix3= memnew( Matrix3( p_matrix ) );
- }
- Variant::Variant(const Quat& p_quat) {
- type=QUAT;
- memnew_placement( _data._mem, Quat( p_quat ) );
- }
- Variant::Variant(const Transform& p_transform) {
- type=TRANSFORM;
- _data._transform = memnew( Transform( p_transform ) );
- }
- Variant::Variant(const Matrix32& p_transform) {
- type=MATRIX32;
- _data._matrix32 = memnew( Matrix32( p_transform ) );
- }
- Variant::Variant(const Color& p_color) {
- type=COLOR;
- memnew_placement( _data._mem, Color(p_color) );
- }
- Variant::Variant(const Image& p_image) {
- type=IMAGE;
- _data._image=memnew( Image(p_image) );
- }
- Variant::Variant(const NodePath& p_node_path) {
- type=NODE_PATH;
- memnew_placement( _data._mem, NodePath(p_node_path) );
- }
- Variant::Variant(const InputEvent& p_input_event) {
- type=INPUT_EVENT;
- _data._input_event = memnew( InputEvent(p_input_event) );
- }
- Variant::Variant(const RefPtr& p_resource) {
- type=OBJECT;
- memnew_placement( _data._mem, ObjData );
- REF ref = p_resource;
- _get_obj().obj=ref.ptr();
- _get_obj().ref=p_resource;
- }
- Variant::Variant(const RID& p_rid) {
- type=_RID;
- memnew_placement( _data._mem, RID(p_rid) );
- }
- Variant::Variant(const Object* p_object) {
- type=OBJECT;
- memnew_placement( _data._mem, ObjData );
- _get_obj().obj=const_cast<Object*>(p_object);
- }
- Variant::Variant(const Dictionary& p_dictionary) {
- type=DICTIONARY;
- memnew_placement( _data._mem, (Dictionary)( p_dictionary) );
- }
- Variant::Variant(const Array& p_array) {
- type=ARRAY;
- memnew_placement( _data._mem, Array(p_array) );
- }
- Variant::Variant(const PoolVector<Plane>& p_array) {
- type=ARRAY;
- Array *plane_array=memnew_placement( _data._mem, Array );
- plane_array->resize( p_array.size() );
- for (int i=0;i<p_array.size();i++) {
- plane_array->operator [](i)=Variant(p_array[i]);
- }
- }
- Variant::Variant(const Vector<Plane>& p_array) {
- type=ARRAY;
- Array *plane_array=memnew_placement( _data._mem, Array );
- plane_array->resize( p_array.size() );
- for (int i=0;i<p_array.size();i++) {
- plane_array->operator [](i)=Variant(p_array[i]);
- }
- }
- Variant::Variant(const Vector<RID>& p_array) {
- type=ARRAY;
- Array *rid_array=memnew_placement( _data._mem, Array );
- rid_array->resize( p_array.size() );
- for (int i=0;i<p_array.size();i++) {
- rid_array->set(i,Variant(p_array[i]));
- }
- }
- Variant::Variant(const Vector<Vector2>& p_array) {
- type=NIL;
- PoolVector<Vector2> v;
- int len=p_array.size();
- if (len>0) {
- v.resize(len);
- PoolVector<Vector2>::Write w = v.write();
- const Vector2 *r = p_array.ptr();
- for (int i=0;i<len;i++)
- w[i]=r[i];
- }
- *this=v;
- }
- Variant::Variant(const PoolVector<uint8_t>& p_raw_array) {
- type=RAW_ARRAY;
- memnew_placement( _data._mem, PoolVector<uint8_t>(p_raw_array) );
- }
- Variant::Variant(const PoolVector<int>& p_int_array) {
- type=INT_ARRAY;
- memnew_placement( _data._mem, PoolVector<int>(p_int_array) );
- }
- Variant::Variant(const PoolVector<real_t>& p_real_array) {
- type=REAL_ARRAY;
- memnew_placement( _data._mem, PoolVector<real_t>(p_real_array) );
- }
- Variant::Variant(const PoolVector<String>& p_string_array) {
- type=STRING_ARRAY;
- memnew_placement( _data._mem, PoolVector<String>(p_string_array) );
- }
- Variant::Variant(const PoolVector<Vector3>& p_vector3_array) {
- type=VECTOR3_ARRAY;
- memnew_placement( _data._mem, PoolVector<Vector3>(p_vector3_array) );
- }
- Variant::Variant(const PoolVector<Vector2>& p_vector2_array) {
- type=VECTOR2_ARRAY;
- memnew_placement( _data._mem, PoolVector<Vector2>(p_vector2_array) );
- }
- Variant::Variant(const PoolVector<Color>& p_color_array) {
- type=COLOR_ARRAY;
- memnew_placement( _data._mem, PoolVector<Color>(p_color_array) );
- }
- Variant::Variant(const PoolVector<Face3>& p_face_array) {
- PoolVector<Vector3> vertices;
- int face_count=p_face_array.size();
- vertices.resize(face_count*3);
- if (face_count) {
- PoolVector<Face3>::Read r = p_face_array.read();
- PoolVector<Vector3>::Write w = vertices.write();
- for(int i=0;i<face_count;i++) {
- for(int j=0;j<3;j++)
- w[i*3+j]=r[i].vertex[j];
- }
- r=PoolVector<Face3>::Read();
- w=PoolVector<Vector3>::Write();
- }
- type = NIL;
- *this = vertices;
- }
- /* helpers */
- Variant::Variant(const Vector<Variant>& p_array) {
- type=NIL;
- Array v;
- int len=p_array.size();
- v.resize(len);
- for (int i=0;i<len;i++)
- v.set(i,p_array[i]);
- *this=v;
- }
- Variant::Variant(const Vector<uint8_t>& p_array) {
- type=NIL;
- PoolVector<uint8_t> v;
- int len=p_array.size();
- v.resize(len);
- for (int i=0;i<len;i++)
- v.set(i,p_array[i]);
- *this=v;
- }
- Variant::Variant(const Vector<int>& p_array) {
- type=NIL;
- PoolVector<int> v;
- int len=p_array.size();
- v.resize(len);
- for (int i=0;i<len;i++)
- v.set(i,p_array[i]);
- *this=v;
- }
- Variant::Variant(const Vector<real_t>& p_array) {
- type=NIL;
- PoolVector<real_t> v;
- int len=p_array.size();
- v.resize(len);
- for (int i=0;i<len;i++)
- v.set(i,p_array[i]);
- *this=v;
- }
- Variant::Variant(const Vector<String>& p_array) {
- type=NIL;
- PoolVector<String> v;
- int len=p_array.size();
- v.resize(len);
- for (int i=0;i<len;i++)
- v.set(i,p_array[i]);
- *this=v;
- }
- Variant::Variant(const Vector<Vector3>& p_array) {
- type=NIL;
- PoolVector<Vector3> v;
- int len=p_array.size();
- if (len>0) {
- v.resize(len);
- PoolVector<Vector3>::Write w = v.write();
- const Vector3 *r = p_array.ptr();
- for (int i=0;i<len;i++)
- w[i]=r[i];
- }
- *this=v;
- }
- Variant::Variant(const Vector<Color>& p_array) {
- type=NIL;
- PoolVector<Color> v;
- int len=p_array.size();
- v.resize(len);
- for (int i=0;i<len;i++)
- v.set(i,p_array[i]);
- *this=v;
- }
- void Variant::operator=(const Variant& p_variant) {
- reference(p_variant);
- }
- Variant::Variant(const IP_Address& p_address) {
- type=STRING;
- memnew_placement( _data._mem, String( p_address ) );
- }
- Variant::Variant(const Variant& p_variant) {
- type=NIL;
- reference(p_variant);
- }
- /*
- Variant::~Variant() {
- clear();
- }*/
- uint32_t Variant::hash() const {
- switch( type ) {
- case NIL: {
- return 0;
- } break;
- case BOOL: {
- return _data._bool?1:0;
- } break;
- case INT: {
- return _data._int;
- } break;
- case REAL: {
- MarshallFloat mf;
- mf.f=_data._real;
- return mf.i;
- } break;
- case STRING: {
- return reinterpret_cast<const String*>(_data._mem)->hash();
- } break;
- // math types
- case VECTOR2: {
- uint32_t hash = hash_djb2_one_float(reinterpret_cast<const Vector2*>(_data._mem)->x);
- return hash_djb2_one_float(reinterpret_cast<const Vector2*>(_data._mem)->y,hash);
- } break;
- case RECT2: {
- uint32_t hash = hash_djb2_one_float(reinterpret_cast<const Rect2*>(_data._mem)->pos.x);
- hash = hash_djb2_one_float(reinterpret_cast<const Rect2*>(_data._mem)->pos.y,hash);
- hash = hash_djb2_one_float(reinterpret_cast<const Rect2*>(_data._mem)->size.x,hash);
- return hash_djb2_one_float(reinterpret_cast<const Rect2*>(_data._mem)->size.y,hash);
- } break;
- case MATRIX32: {
- uint32_t hash = 5831;
- for(int i=0;i<3;i++) {
- for(int j=0;j<2;j++) {
- hash = hash_djb2_one_float(_data._matrix32->elements[i][j],hash);
- }
- }
- return hash;
- } break;
- case VECTOR3: {
- uint32_t hash = hash_djb2_one_float(reinterpret_cast<const Vector3*>(_data._mem)->x);
- hash = hash_djb2_one_float(reinterpret_cast<const Vector3*>(_data._mem)->y,hash);
- return hash_djb2_one_float(reinterpret_cast<const Vector3*>(_data._mem)->z,hash);
- } break;
- case PLANE: {
- uint32_t hash = hash_djb2_one_float(reinterpret_cast<const Plane*>(_data._mem)->normal.x);
- hash = hash_djb2_one_float(reinterpret_cast<const Plane*>(_data._mem)->normal.y,hash);
- hash = hash_djb2_one_float(reinterpret_cast<const Plane*>(_data._mem)->normal.z,hash);
- return hash_djb2_one_float(reinterpret_cast<const Plane*>(_data._mem)->d,hash);
- } break;
- /*
- case QUAT: {
- } break;*/
- case _AABB: {
- uint32_t hash = 5831;
- for(int i=0;i<3;i++) {
- hash = hash_djb2_one_float(_data._aabb->pos[i],hash);
- hash = hash_djb2_one_float(_data._aabb->size[i],hash);
- }
- return hash;
- } break;
- case QUAT: {
- uint32_t hash = hash_djb2_one_float(reinterpret_cast<const Quat*>(_data._mem)->x);
- hash = hash_djb2_one_float(reinterpret_cast<const Quat*>(_data._mem)->y,hash);
- hash = hash_djb2_one_float(reinterpret_cast<const Quat*>(_data._mem)->z,hash);
- return hash_djb2_one_float(reinterpret_cast<const Quat*>(_data._mem)->w,hash);
- } break;
- case MATRIX3: {
- uint32_t hash = 5831;
- for(int i=0;i<3;i++) {
- for(int j=0;j<3;j++) {
- hash = hash_djb2_one_float(_data._matrix3->elements[i][j],hash);
- }
- }
- return hash;
- } break;
- case TRANSFORM: {
- uint32_t hash = 5831;
- for(int i=0;i<3;i++) {
- for(int j=0;j<3;j++) {
- hash = hash_djb2_one_float(_data._transform->basis.elements[i][j],hash);
- }
- hash = hash_djb2_one_float(_data._transform->origin[i],hash);
- }
- return hash;
- } break;
- // misc types
- case COLOR: {
- uint32_t hash = hash_djb2_one_float(reinterpret_cast<const Color*>(_data._mem)->r);
- hash = hash_djb2_one_float(reinterpret_cast<const Color*>(_data._mem)->g,hash);
- hash = hash_djb2_one_float(reinterpret_cast<const Color*>(_data._mem)->b,hash);
- return hash_djb2_one_float(reinterpret_cast<const Color*>(_data._mem)->a,hash);
- } break;
- case IMAGE: {
- return 0;
- } break;
- case _RID: {
- return hash_djb2_one_64(reinterpret_cast<const RID*>(_data._mem)->get_id());
- } break;
- case OBJECT: {
- return hash_djb2_one_64(make_uint64_t(_get_obj().obj));
- } break;
- case NODE_PATH: {
- return reinterpret_cast<const NodePath*>(_data._mem)->hash();
- } break;
- case INPUT_EVENT: {
- return hash_djb2_buffer((uint8_t*)_data._input_event,sizeof(InputEvent));
- } break;
- case DICTIONARY: {
- return reinterpret_cast<const Dictionary*>(_data._mem)->hash();
- } break;
- case ARRAY: {
- const Array& arr = *reinterpret_cast<const Array* >(_data._mem);
- return arr.hash();
- } break;
- case RAW_ARRAY: {
- const PoolVector<uint8_t>& arr = *reinterpret_cast<const PoolVector<uint8_t>* >(_data._mem);
- int len = arr.size();
- PoolVector<uint8_t>::Read r = arr.read();
- return hash_djb2_buffer((uint8_t*)&r[0],len);
- } break;
- case INT_ARRAY: {
- const PoolVector<int>& arr = *reinterpret_cast<const PoolVector<int>* >(_data._mem);
- int len = arr.size();
- PoolVector<int>::Read r = arr.read();
- return hash_djb2_buffer((uint8_t*)&r[0],len*sizeof(int));
- } break;
- case REAL_ARRAY: {
- const PoolVector<real_t>& arr = *reinterpret_cast<const PoolVector<real_t>* >(_data._mem);
- int len = arr.size();
- PoolVector<real_t>::Read r = arr.read();
- return hash_djb2_buffer((uint8_t*)&r[0],len*sizeof(real_t));
- } break;
- case STRING_ARRAY: {
- uint32_t hash=5831;
- const PoolVector<String>& arr = *reinterpret_cast<const PoolVector<String>* >(_data._mem);
- int len = arr.size();
- PoolVector<String>::Read r = arr.read();
- for(int i=0;i<len;i++) {
- hash = hash_djb2_one_32(r[i].hash(),hash);
- }
- return hash;
- } break;
- case VECTOR2_ARRAY: {
- uint32_t hash=5831;
- const PoolVector<Vector2>& arr = *reinterpret_cast<const PoolVector<Vector2>* >(_data._mem);
- int len = arr.size();
- PoolVector<Vector2>::Read r = arr.read();
- for(int i=0;i<len;i++) {
- hash = hash_djb2_one_float(r[i].x,hash);
- hash = hash_djb2_one_float(r[i].y,hash);
- }
- return hash;
- } break;
- case VECTOR3_ARRAY: {
- uint32_t hash=5831;
- const PoolVector<Vector3>& arr = *reinterpret_cast<const PoolVector<Vector3>* >(_data._mem);
- int len = arr.size();
- PoolVector<Vector3>::Read r = arr.read();
- for(int i=0;i<len;i++) {
- hash = hash_djb2_one_float(r[i].x,hash);
- hash = hash_djb2_one_float(r[i].y,hash);
- hash = hash_djb2_one_float(r[i].z,hash);
- }
- return hash;
- } break;
- case COLOR_ARRAY: {
- uint32_t hash=5831;
- const PoolVector<Color>& arr = *reinterpret_cast<const PoolVector<Color>* >(_data._mem);
- int len = arr.size();
- PoolVector<Color>::Read r = arr.read();
- for(int i=0;i<len;i++) {
- hash = hash_djb2_one_float(r[i].r,hash);
- hash = hash_djb2_one_float(r[i].g,hash);
- hash = hash_djb2_one_float(r[i].b,hash);
- hash = hash_djb2_one_float(r[i].a,hash);
- }
- return hash;
- } break;
- default: {}
- }
- return 0;
- }
- bool Variant::is_ref() const {
- return type==OBJECT && !_get_obj().ref.is_null();
- }
- Vector<Variant> varray() {
- return Vector<Variant>();
- }
- Vector<Variant> varray(const Variant& p_arg1) {
- Vector<Variant> v;
- v.push_back(p_arg1);
- return v;
- }
- Vector<Variant> varray(const Variant& p_arg1,const Variant& p_arg2) {
- Vector<Variant> v;
- v.push_back(p_arg1);
- v.push_back(p_arg2);
- return v;
- }
- Vector<Variant> varray(const Variant& p_arg1,const Variant& p_arg2,const Variant& p_arg3) {
- Vector<Variant> v;
- v.push_back(p_arg1);
- v.push_back(p_arg2);
- v.push_back(p_arg3);
- return v;
- }
- Vector<Variant> varray(const Variant& p_arg1,const Variant& p_arg2,const Variant& p_arg3,const Variant& p_arg4) {
- Vector<Variant> v;
- v.push_back(p_arg1);
- v.push_back(p_arg2);
- v.push_back(p_arg3);
- v.push_back(p_arg4);
- return v;
- }
- Vector<Variant> varray(const Variant& p_arg1,const Variant& p_arg2,const Variant& p_arg3,const Variant& p_arg4,const Variant& p_arg5) {
- Vector<Variant> v;
- v.push_back(p_arg1);
- v.push_back(p_arg2);
- v.push_back(p_arg3);
- v.push_back(p_arg4);
- v.push_back(p_arg5);
- return v;
- }
- void Variant::static_assign(const Variant& p_variant) {
- }
- bool Variant::is_shared() const {
- switch(type) {
- case OBJECT: return true;
- case ARRAY: return reinterpret_cast<const Array*>(_data._mem)->is_shared();
- case DICTIONARY: return reinterpret_cast<const Dictionary*>(_data._mem)->is_shared();
- default: {}
- }
- return false;
- }
- Variant Variant::call(const StringName& p_method,VARIANT_ARG_DECLARE) {
- VARIANT_ARGPTRS;
- int argc=0;
- for(int i=0;i<VARIANT_ARG_MAX;i++) {
- if (argptr[i]->get_type()==Variant::NIL)
- break;
- argc++;
- }
- CallError error;
- Variant ret = call(p_method,argptr,argc,error);
- switch(error.error) {
- case CallError::CALL_ERROR_INVALID_ARGUMENT: {
- String err = "Invalid type for argument #"+itos(error.argument)+", expected '"+Variant::get_type_name(error.expected)+"'.";
- ERR_PRINT(err.utf8().get_data());
- } break;
- case CallError::CALL_ERROR_INVALID_METHOD: {
- String err = "Invalid method '"+p_method+"' for type '"+Variant::get_type_name(type)+"'.";
- ERR_PRINT(err.utf8().get_data());
- } break;
- case CallError::CALL_ERROR_TOO_MANY_ARGUMENTS: {
- String err = "Too many arguments for method '"+p_method+"'";
- ERR_PRINT(err.utf8().get_data());
- } break;
- default: {}
- }
- return ret;
- }
- void Variant::construct_from_string(const String& p_string,Variant& r_value,ObjectConstruct p_obj_construct,void *p_construct_ud) {
- r_value=Variant();
- }
- String Variant::get_construct_string() const {
- String vars;
- VariantWriter::write_to_string(*this,vars);
- return vars;
- }
- String Variant::get_call_error_text(Object* p_base, const StringName& p_method,const Variant** p_argptrs,int p_argcount,const Variant::CallError &ce) {
- String err_text;
- if (ce.error==Variant::CallError::CALL_ERROR_INVALID_ARGUMENT) {
- int errorarg=ce.argument;
- err_text="Cannot convert argument "+itos(errorarg+1)+" from "+Variant::get_type_name(p_argptrs[errorarg]->get_type())+" to "+Variant::get_type_name(ce.expected)+".";
- } else if (ce.error==Variant::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS) {
- err_text="Method expected "+itos(ce.argument)+" arguments, but called with "+itos(p_argcount)+".";
- } else if (ce.error==Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS) {
- err_text="Method expected "+itos(ce.argument)+" arguments, but called with "+itos(p_argcount)+".";
- } else if (ce.error==Variant::CallError::CALL_ERROR_INVALID_METHOD) {
- err_text="Method not found.";
- } else if (ce.error==Variant::CallError::CALL_ERROR_INSTANCE_IS_NULL) {
- err_text="Instance is null";
- } else if (ce.error==Variant::CallError::CALL_OK){
- return "Call OK";
- }
- String class_name = p_base->get_class();
- Ref<Script> script = p_base->get_script();
- if (script.is_valid() && script->get_path().is_resource_file()) {
- class_name+="("+script->get_path().get_file()+")";
- }
- return "'"+class_name+"::"+String(p_method)+"': "+err_text;
- }
- String vformat(const String& p_text, const Variant& p1,const Variant& p2,const Variant& p3,const Variant& p4,const Variant& p5) {
- Array args;
- if (p1.get_type()!=Variant::NIL) {
- args.push_back(p1);
- if (p2.get_type()!=Variant::NIL) {
- args.push_back(p2);
- if (p3.get_type()!=Variant::NIL) {
- args.push_back(p3);
- if (p4.get_type()!=Variant::NIL) {
- args.push_back(p4);
- if (p5.get_type()!=Variant::NIL) {
- args.push_back(p5);
- }
- }
- }
- }
- }
- bool error=false;
- String fmt = p_text.sprintf(args,&error);
- ERR_FAIL_COND_V(error,String());
- return fmt;
- }
|