gdscript_parser.cpp 280 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929
  1. /*************************************************************************/
  2. /* gdscript_parser.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2022 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2022 Godot Engine contributors (cf. AUTHORS.md). */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "gdscript_parser.h"
  31. #include "core/core_string_names.h"
  32. #include "core/engine.h"
  33. #include "core/io/resource_loader.h"
  34. #include "core/os/file_access.h"
  35. #include "core/print_string.h"
  36. #include "core/project_settings.h"
  37. #include "core/reference.h"
  38. #include "core/script_language.h"
  39. #include "gdscript.h"
  40. template <class T>
  41. T *GDScriptParser::alloc_node() {
  42. T *t = memnew(T);
  43. t->next = list;
  44. list = t;
  45. if (!head) {
  46. head = t;
  47. }
  48. t->line = tokenizer->get_token_line();
  49. t->column = tokenizer->get_token_column();
  50. return t;
  51. }
  52. #ifdef DEBUG_ENABLED
  53. static String _find_function_name(const GDScriptParser::OperatorNode *p_call);
  54. #endif // DEBUG_ENABLED
  55. bool GDScriptParser::_end_statement() {
  56. if (tokenizer->get_token() == GDScriptTokenizer::TK_SEMICOLON) {
  57. tokenizer->advance();
  58. return true; //handle next
  59. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE || tokenizer->get_token() == GDScriptTokenizer::TK_EOF) {
  60. return true; //will be handled properly
  61. }
  62. return false;
  63. }
  64. void GDScriptParser::_set_end_statement_error(String p_name) {
  65. String error_msg;
  66. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER) {
  67. error_msg = vformat("Expected end of statement (\"%s\"), got %s (\"%s\") instead.", p_name, tokenizer->get_token_name(tokenizer->get_token()), tokenizer->get_token_identifier());
  68. } else {
  69. error_msg = vformat("Expected end of statement (\"%s\"), got %s instead.", p_name, tokenizer->get_token_name(tokenizer->get_token()));
  70. }
  71. _set_error(error_msg);
  72. }
  73. bool GDScriptParser::_enter_indent_block(BlockNode *p_block) {
  74. if (tokenizer->get_token() != GDScriptTokenizer::TK_COLON) {
  75. // report location at the previous token (on the previous line)
  76. int error_line = tokenizer->get_token_line(-1);
  77. int error_column = tokenizer->get_token_column(-1);
  78. _set_error("':' expected at end of line.", error_line, error_column);
  79. return false;
  80. }
  81. tokenizer->advance();
  82. if (tokenizer->get_token() == GDScriptTokenizer::TK_EOF) {
  83. return false;
  84. }
  85. if (tokenizer->get_token() != GDScriptTokenizer::TK_NEWLINE) {
  86. // be more python-like
  87. IndentLevel current_level = indent_level.back()->get();
  88. indent_level.push_back(current_level);
  89. return true;
  90. //_set_error("newline expected after ':'.");
  91. //return false;
  92. }
  93. while (true) {
  94. if (tokenizer->get_token() != GDScriptTokenizer::TK_NEWLINE) {
  95. return false; //wtf
  96. } else if (tokenizer->get_token(1) == GDScriptTokenizer::TK_EOF) {
  97. return false;
  98. } else if (tokenizer->get_token(1) != GDScriptTokenizer::TK_NEWLINE) {
  99. int indent = tokenizer->get_token_line_indent();
  100. int tabs = tokenizer->get_token_line_tab_indent();
  101. IndentLevel current_level = indent_level.back()->get();
  102. IndentLevel new_indent(indent, tabs);
  103. if (new_indent.is_mixed(current_level)) {
  104. _set_error("Mixed tabs and spaces in indentation.");
  105. return false;
  106. }
  107. if (indent <= current_level.indent) {
  108. return false;
  109. }
  110. indent_level.push_back(new_indent);
  111. tokenizer->advance();
  112. return true;
  113. } else if (p_block) {
  114. NewLineNode *nl = alloc_node<NewLineNode>();
  115. nl->line = tokenizer->get_token_line();
  116. p_block->statements.push_back(nl);
  117. }
  118. tokenizer->advance(); // go to next newline
  119. }
  120. }
  121. bool GDScriptParser::_parse_arguments(Node *p_parent, Vector<Node *> &p_args, bool p_static, bool p_can_codecomplete, bool p_parsing_constant) {
  122. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  123. tokenizer->advance();
  124. } else {
  125. parenthesis++;
  126. int argidx = 0;
  127. while (true) {
  128. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  129. _make_completable_call(argidx);
  130. completion_node = p_parent;
  131. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT && tokenizer->get_token_constant().get_type() == Variant::STRING && tokenizer->get_token(1) == GDScriptTokenizer::TK_CURSOR) {
  132. //completing a string argument..
  133. completion_cursor = tokenizer->get_token_constant();
  134. _make_completable_call(argidx);
  135. completion_node = p_parent;
  136. tokenizer->advance(1);
  137. return false;
  138. }
  139. Node *arg = _parse_expression(p_parent, p_static, false, p_parsing_constant);
  140. if (!arg) {
  141. return false;
  142. }
  143. p_args.push_back(arg);
  144. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  145. tokenizer->advance();
  146. break;
  147. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  148. if (tokenizer->get_token(1) == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  149. _set_error("Expression expected");
  150. return false;
  151. }
  152. tokenizer->advance();
  153. argidx++;
  154. } else {
  155. // something is broken
  156. _set_error("Expected ',' or ')'");
  157. return false;
  158. }
  159. }
  160. parenthesis--;
  161. }
  162. return true;
  163. }
  164. void GDScriptParser::_make_completable_call(int p_arg) {
  165. completion_cursor = StringName();
  166. completion_type = COMPLETION_CALL_ARGUMENTS;
  167. completion_class = current_class;
  168. completion_function = current_function;
  169. completion_line = tokenizer->get_token_line();
  170. completion_argument = p_arg;
  171. completion_block = current_block;
  172. completion_found = true;
  173. tokenizer->advance();
  174. }
  175. bool GDScriptParser::_get_completable_identifier(CompletionType p_type, StringName &identifier) {
  176. identifier = StringName();
  177. if (tokenizer->is_token_literal()) {
  178. identifier = tokenizer->get_token_literal();
  179. tokenizer->advance();
  180. }
  181. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  182. completion_cursor = identifier;
  183. completion_type = p_type;
  184. completion_class = current_class;
  185. completion_function = current_function;
  186. completion_line = tokenizer->get_token_line();
  187. completion_block = current_block;
  188. completion_found = true;
  189. completion_ident_is_call = false;
  190. tokenizer->advance();
  191. if (tokenizer->is_token_literal()) {
  192. identifier = identifier.operator String() + tokenizer->get_token_literal().operator String();
  193. tokenizer->advance();
  194. }
  195. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  196. completion_ident_is_call = true;
  197. }
  198. return true;
  199. }
  200. return false;
  201. }
  202. GDScriptParser::Node *GDScriptParser::_parse_expression(Node *p_parent, bool p_static, bool p_allow_assign, bool p_parsing_constant) {
  203. //Vector<Node*> expressions;
  204. //Vector<OperatorNode::Operator> operators;
  205. Vector<Expression> expression;
  206. Node *expr = nullptr;
  207. int op_line = tokenizer->get_token_line(); // when operators are created at the bottom, the line might have been changed (\n found)
  208. while (true) {
  209. /*****************/
  210. /* Parse Operand */
  211. /*****************/
  212. if (parenthesis > 0) {
  213. //remove empty space (only allowed if inside parenthesis
  214. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  215. tokenizer->advance();
  216. }
  217. }
  218. // Check that the next token is not TK_CURSOR and if it is, the offset should be incremented.
  219. int next_valid_offset = 1;
  220. if (tokenizer->get_token(next_valid_offset) == GDScriptTokenizer::TK_CURSOR) {
  221. next_valid_offset++;
  222. // There is a chunk of the identifier that also needs to be ignored (not always there!)
  223. if (tokenizer->get_token(next_valid_offset) == GDScriptTokenizer::TK_IDENTIFIER) {
  224. next_valid_offset++;
  225. }
  226. }
  227. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  228. //subexpression ()
  229. tokenizer->advance();
  230. parenthesis++;
  231. Node *subexpr = _parse_expression(p_parent, p_static, p_allow_assign, p_parsing_constant);
  232. parenthesis--;
  233. if (!subexpr) {
  234. return nullptr;
  235. }
  236. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  237. _set_error("Expected ')' in expression");
  238. return nullptr;
  239. }
  240. tokenizer->advance();
  241. expr = subexpr;
  242. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_DOLLAR) {
  243. tokenizer->advance();
  244. String path;
  245. bool need_identifier = true;
  246. bool done = false;
  247. int line = tokenizer->get_token_line();
  248. while (!done) {
  249. switch (tokenizer->get_token()) {
  250. case GDScriptTokenizer::TK_CURSOR: {
  251. completion_type = COMPLETION_GET_NODE;
  252. completion_class = current_class;
  253. completion_function = current_function;
  254. completion_line = tokenizer->get_token_line();
  255. completion_cursor = path;
  256. completion_argument = 0;
  257. completion_block = current_block;
  258. completion_found = true;
  259. tokenizer->advance();
  260. } break;
  261. case GDScriptTokenizer::TK_CONSTANT: {
  262. if (!need_identifier) {
  263. done = true;
  264. break;
  265. }
  266. if (tokenizer->get_token_constant().get_type() != Variant::STRING) {
  267. _set_error("Expected string constant or identifier after '$' or '/'.");
  268. return nullptr;
  269. }
  270. path += String(tokenizer->get_token_constant());
  271. tokenizer->advance();
  272. need_identifier = false;
  273. } break;
  274. case GDScriptTokenizer::TK_OP_DIV: {
  275. if (need_identifier) {
  276. done = true;
  277. break;
  278. }
  279. path += "/";
  280. tokenizer->advance();
  281. need_identifier = true;
  282. } break;
  283. default: {
  284. // Instead of checking for TK_IDENTIFIER, we check with is_token_literal, as this allows us to use match/sync/etc. as a name
  285. if (need_identifier && tokenizer->is_token_literal()) {
  286. path += String(tokenizer->get_token_literal());
  287. tokenizer->advance();
  288. need_identifier = false;
  289. } else {
  290. done = true;
  291. }
  292. break;
  293. }
  294. }
  295. }
  296. if (path == "") {
  297. _set_error("Path expected after $.");
  298. return nullptr;
  299. }
  300. OperatorNode *op = alloc_node<OperatorNode>();
  301. op->op = OperatorNode::OP_CALL;
  302. op->line = line;
  303. op->arguments.push_back(alloc_node<SelfNode>());
  304. op->arguments[0]->line = line;
  305. IdentifierNode *funcname = alloc_node<IdentifierNode>();
  306. funcname->name = "get_node";
  307. funcname->line = line;
  308. op->arguments.push_back(funcname);
  309. ConstantNode *nodepath = alloc_node<ConstantNode>();
  310. nodepath->value = NodePath(StringName(path));
  311. nodepath->datatype = _type_from_variant(nodepath->value);
  312. nodepath->line = line;
  313. op->arguments.push_back(nodepath);
  314. expr = op;
  315. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  316. tokenizer->advance();
  317. continue; //no point in cursor in the middle of expression
  318. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT) {
  319. //constant defined by tokenizer
  320. ConstantNode *constant = alloc_node<ConstantNode>();
  321. constant->value = tokenizer->get_token_constant();
  322. constant->datatype = _type_from_variant(constant->value);
  323. tokenizer->advance();
  324. expr = constant;
  325. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONST_PI) {
  326. //constant defined by tokenizer
  327. ConstantNode *constant = alloc_node<ConstantNode>();
  328. constant->value = Math_PI;
  329. constant->datatype = _type_from_variant(constant->value);
  330. tokenizer->advance();
  331. expr = constant;
  332. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONST_TAU) {
  333. //constant defined by tokenizer
  334. ConstantNode *constant = alloc_node<ConstantNode>();
  335. constant->value = Math_TAU;
  336. constant->datatype = _type_from_variant(constant->value);
  337. tokenizer->advance();
  338. expr = constant;
  339. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONST_INF) {
  340. //constant defined by tokenizer
  341. ConstantNode *constant = alloc_node<ConstantNode>();
  342. constant->value = Math_INF;
  343. constant->datatype = _type_from_variant(constant->value);
  344. tokenizer->advance();
  345. expr = constant;
  346. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONST_NAN) {
  347. //constant defined by tokenizer
  348. ConstantNode *constant = alloc_node<ConstantNode>();
  349. constant->value = Math_NAN;
  350. constant->datatype = _type_from_variant(constant->value);
  351. tokenizer->advance();
  352. expr = constant;
  353. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_PRELOAD) {
  354. //constant defined by tokenizer
  355. tokenizer->advance();
  356. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  357. _set_error("Expected '(' after 'preload'");
  358. return nullptr;
  359. }
  360. tokenizer->advance();
  361. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  362. completion_cursor = StringName();
  363. completion_node = p_parent;
  364. completion_type = COMPLETION_RESOURCE_PATH;
  365. completion_class = current_class;
  366. completion_function = current_function;
  367. completion_line = tokenizer->get_token_line();
  368. completion_block = current_block;
  369. completion_argument = 0;
  370. completion_found = true;
  371. tokenizer->advance();
  372. }
  373. String path;
  374. bool found_constant = false;
  375. bool valid = false;
  376. ConstantNode *cn;
  377. parenthesis++;
  378. Node *subexpr = _parse_and_reduce_expression(p_parent, p_static);
  379. parenthesis--;
  380. if (subexpr) {
  381. if (subexpr->type == Node::TYPE_CONSTANT) {
  382. cn = static_cast<ConstantNode *>(subexpr);
  383. found_constant = true;
  384. }
  385. if (subexpr->type == Node::TYPE_IDENTIFIER) {
  386. IdentifierNode *in = static_cast<IdentifierNode *>(subexpr);
  387. // Try to find the constant expression by the identifier
  388. if (current_class->constant_expressions.has(in->name)) {
  389. Node *cn_exp = current_class->constant_expressions[in->name].expression;
  390. if (cn_exp->type == Node::TYPE_CONSTANT) {
  391. cn = static_cast<ConstantNode *>(cn_exp);
  392. found_constant = true;
  393. }
  394. }
  395. }
  396. if (found_constant && cn->value.get_type() == Variant::STRING) {
  397. valid = true;
  398. path = (String)cn->value;
  399. }
  400. }
  401. if (!valid) {
  402. _set_error("expected string constant as 'preload' argument.");
  403. return nullptr;
  404. }
  405. if (!path.is_abs_path() && base_path != "") {
  406. path = base_path.plus_file(path);
  407. }
  408. path = path.replace("///", "//").simplify_path();
  409. if (path == self_path) {
  410. _set_error("Can't preload itself (use 'get_script()').");
  411. return nullptr;
  412. }
  413. Ref<Resource> res;
  414. dependencies.push_back(path);
  415. if (!dependencies_only) {
  416. if (!validating) {
  417. //this can be too slow for just validating code
  418. if (for_completion && ScriptCodeCompletionCache::get_singleton() && FileAccess::exists(path)) {
  419. res = ScriptCodeCompletionCache::get_singleton()->get_cached_resource(path);
  420. } else if (!for_completion || FileAccess::exists(path)) {
  421. res = ResourceLoader::load(path);
  422. }
  423. } else {
  424. if (!FileAccess::exists(path)) {
  425. _set_error("Can't preload resource at path: " + path);
  426. return nullptr;
  427. } else if (ScriptCodeCompletionCache::get_singleton()) {
  428. res = ScriptCodeCompletionCache::get_singleton()->get_cached_resource(path);
  429. }
  430. }
  431. if (!res.is_valid()) {
  432. _set_error("Can't preload resource at path: " + path);
  433. return nullptr;
  434. }
  435. }
  436. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  437. _set_error("Expected ')' after 'preload' path");
  438. return nullptr;
  439. }
  440. Ref<GDScript> gds = res;
  441. if (gds.is_valid() && !gds->is_valid()) {
  442. _set_error("Couldn't fully preload the script, possible cyclic reference or compilation error. Use \"load()\" instead if a cyclic reference is intended.");
  443. return nullptr;
  444. }
  445. tokenizer->advance();
  446. ConstantNode *constant = alloc_node<ConstantNode>();
  447. constant->value = res;
  448. constant->datatype = _type_from_variant(constant->value);
  449. expr = constant;
  450. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_YIELD) {
  451. if (!current_function) {
  452. _set_error("\"yield()\" can only be used inside function blocks.");
  453. return nullptr;
  454. }
  455. current_function->has_yield = true;
  456. tokenizer->advance();
  457. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  458. _set_error("Expected \"(\" after \"yield\".");
  459. return nullptr;
  460. }
  461. tokenizer->advance();
  462. OperatorNode *yield = alloc_node<OperatorNode>();
  463. yield->op = OperatorNode::OP_YIELD;
  464. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  465. tokenizer->advance();
  466. }
  467. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  468. expr = yield;
  469. tokenizer->advance();
  470. } else {
  471. parenthesis++;
  472. Node *object = _parse_and_reduce_expression(p_parent, p_static);
  473. if (!object) {
  474. return nullptr;
  475. }
  476. yield->arguments.push_back(object);
  477. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  478. _set_error("Expected \",\" after the first argument of \"yield\".");
  479. return nullptr;
  480. }
  481. tokenizer->advance();
  482. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  483. completion_cursor = StringName();
  484. completion_node = object;
  485. completion_type = COMPLETION_YIELD;
  486. completion_class = current_class;
  487. completion_function = current_function;
  488. completion_line = tokenizer->get_token_line();
  489. completion_argument = 0;
  490. completion_block = current_block;
  491. completion_found = true;
  492. tokenizer->advance();
  493. }
  494. Node *signal = _parse_and_reduce_expression(p_parent, p_static);
  495. if (!signal) {
  496. return nullptr;
  497. }
  498. yield->arguments.push_back(signal);
  499. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  500. _set_error("Expected \")\" after the second argument of \"yield\".");
  501. return nullptr;
  502. }
  503. parenthesis--;
  504. tokenizer->advance();
  505. expr = yield;
  506. }
  507. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_SELF) {
  508. if (p_static) {
  509. _set_error("\"self\" isn't allowed in a static function or constant expression.");
  510. return nullptr;
  511. }
  512. //constant defined by tokenizer
  513. SelfNode *self = alloc_node<SelfNode>();
  514. tokenizer->advance();
  515. expr = self;
  516. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_TYPE && tokenizer->get_token(1) == GDScriptTokenizer::TK_PERIOD) {
  517. Variant::Type bi_type = tokenizer->get_token_type();
  518. tokenizer->advance(2);
  519. StringName identifier;
  520. if (_get_completable_identifier(COMPLETION_BUILT_IN_TYPE_CONSTANT, identifier)) {
  521. completion_built_in_constant = bi_type;
  522. }
  523. if (identifier == StringName()) {
  524. _set_error("Built-in type constant or static function expected after \".\".");
  525. return nullptr;
  526. }
  527. if (!Variant::has_constant(bi_type, identifier)) {
  528. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_OPEN &&
  529. Variant::is_method_const(bi_type, identifier) &&
  530. Variant::get_method_return_type(bi_type, identifier) == bi_type) {
  531. tokenizer->advance();
  532. OperatorNode *construct = alloc_node<OperatorNode>();
  533. construct->op = OperatorNode::OP_CALL;
  534. TypeNode *tn = alloc_node<TypeNode>();
  535. tn->vtype = bi_type;
  536. construct->arguments.push_back(tn);
  537. OperatorNode *op = alloc_node<OperatorNode>();
  538. op->op = OperatorNode::OP_CALL;
  539. op->arguments.push_back(construct);
  540. IdentifierNode *id = alloc_node<IdentifierNode>();
  541. id->name = identifier;
  542. op->arguments.push_back(id);
  543. if (!_parse_arguments(op, op->arguments, p_static, true, p_parsing_constant)) {
  544. return nullptr;
  545. }
  546. expr = op;
  547. } else {
  548. // Object is a special case
  549. bool valid = false;
  550. if (bi_type == Variant::OBJECT) {
  551. int object_constant = ClassDB::get_integer_constant("Object", identifier, &valid);
  552. if (valid) {
  553. ConstantNode *cn = alloc_node<ConstantNode>();
  554. cn->value = object_constant;
  555. cn->datatype = _type_from_variant(cn->value);
  556. expr = cn;
  557. }
  558. }
  559. if (!valid) {
  560. _set_error("Static constant '" + identifier.operator String() + "' not present in built-in type " + Variant::get_type_name(bi_type) + ".");
  561. return nullptr;
  562. }
  563. }
  564. } else {
  565. ConstantNode *cn = alloc_node<ConstantNode>();
  566. cn->value = Variant::get_constant_value(bi_type, identifier);
  567. cn->datatype = _type_from_variant(cn->value);
  568. expr = cn;
  569. }
  570. } else if (tokenizer->get_token(next_valid_offset) == GDScriptTokenizer::TK_PARENTHESIS_OPEN && tokenizer->is_token_literal()) {
  571. // We check with is_token_literal, as this allows us to use match/sync/etc. as a name
  572. //function or constructor
  573. OperatorNode *op = alloc_node<OperatorNode>();
  574. op->op = OperatorNode::OP_CALL;
  575. //Do a quick Array and Dictionary Check. Replace if either require no arguments.
  576. bool replaced = false;
  577. if (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_TYPE) {
  578. Variant::Type ct = tokenizer->get_token_type();
  579. if (!p_parsing_constant) {
  580. if (ct == Variant::ARRAY) {
  581. if (tokenizer->get_token(2) == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  582. ArrayNode *arr = alloc_node<ArrayNode>();
  583. expr = arr;
  584. replaced = true;
  585. tokenizer->advance(3);
  586. }
  587. }
  588. if (ct == Variant::DICTIONARY) {
  589. if (tokenizer->get_token(2) == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  590. DictionaryNode *dict = alloc_node<DictionaryNode>();
  591. expr = dict;
  592. replaced = true;
  593. tokenizer->advance(3);
  594. }
  595. }
  596. }
  597. if (!replaced) {
  598. TypeNode *tn = alloc_node<TypeNode>();
  599. tn->vtype = tokenizer->get_token_type();
  600. op->arguments.push_back(tn);
  601. tokenizer->advance(2);
  602. }
  603. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_FUNC) {
  604. BuiltInFunctionNode *bn = alloc_node<BuiltInFunctionNode>();
  605. bn->function = tokenizer->get_token_built_in_func();
  606. op->arguments.push_back(bn);
  607. tokenizer->advance(2);
  608. } else {
  609. SelfNode *self = alloc_node<SelfNode>();
  610. op->arguments.push_back(self);
  611. StringName identifier;
  612. if (_get_completable_identifier(COMPLETION_FUNCTION, identifier)) {
  613. }
  614. IdentifierNode *id = alloc_node<IdentifierNode>();
  615. id->name = identifier;
  616. op->arguments.push_back(id);
  617. tokenizer->advance(1);
  618. }
  619. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  620. _make_completable_call(0);
  621. completion_node = op;
  622. }
  623. if (!replaced) {
  624. if (!_parse_arguments(op, op->arguments, p_static, true, p_parsing_constant)) {
  625. return nullptr;
  626. }
  627. expr = op;
  628. }
  629. } else if (tokenizer->is_token_literal(0, true)) {
  630. // We check with is_token_literal, as this allows us to use match/sync/etc. as a name
  631. //identifier (reference)
  632. const ClassNode *cln = current_class;
  633. bool bfn = false;
  634. StringName identifier;
  635. int id_line = tokenizer->get_token_line();
  636. if (_get_completable_identifier(COMPLETION_IDENTIFIER, identifier)) {
  637. }
  638. BlockNode *b = current_block;
  639. while (!bfn && b) {
  640. if (b->variables.has(identifier)) {
  641. IdentifierNode *id = alloc_node<IdentifierNode>();
  642. id->name = identifier;
  643. id->declared_block = b;
  644. id->line = id_line;
  645. expr = id;
  646. bfn = true;
  647. #ifdef DEBUG_ENABLED
  648. LocalVarNode *lv = b->variables[identifier];
  649. switch (tokenizer->get_token()) {
  650. case GDScriptTokenizer::TK_OP_ASSIGN_ADD:
  651. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_AND:
  652. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_OR:
  653. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_XOR:
  654. case GDScriptTokenizer::TK_OP_ASSIGN_DIV:
  655. case GDScriptTokenizer::TK_OP_ASSIGN_MOD:
  656. case GDScriptTokenizer::TK_OP_ASSIGN_MUL:
  657. case GDScriptTokenizer::TK_OP_ASSIGN_SHIFT_LEFT:
  658. case GDScriptTokenizer::TK_OP_ASSIGN_SHIFT_RIGHT:
  659. case GDScriptTokenizer::TK_OP_ASSIGN_SUB: {
  660. if (lv->assignments == 0) {
  661. if (!lv->datatype.has_type) {
  662. _set_error("Using assignment with operation on a variable that was never assigned.");
  663. return nullptr;
  664. }
  665. _add_warning(GDScriptWarning::UNASSIGNED_VARIABLE_OP_ASSIGN, -1, identifier.operator String());
  666. }
  667. FALLTHROUGH;
  668. }
  669. case GDScriptTokenizer::TK_OP_ASSIGN: {
  670. lv->assignments += 1;
  671. lv->usages--; // Assignment is not really usage
  672. } break;
  673. default: {
  674. lv->usages++;
  675. }
  676. }
  677. #endif // DEBUG_ENABLED
  678. break;
  679. }
  680. b = b->parent_block;
  681. }
  682. if (!bfn && p_parsing_constant) {
  683. if (cln->constant_expressions.has(identifier)) {
  684. expr = cln->constant_expressions[identifier].expression;
  685. bfn = true;
  686. } else if (GDScriptLanguage::get_singleton()->get_global_map().has(identifier)) {
  687. //check from constants
  688. ConstantNode *constant = alloc_node<ConstantNode>();
  689. constant->value = GDScriptLanguage::get_singleton()->get_global_array()[GDScriptLanguage::get_singleton()->get_global_map()[identifier]];
  690. constant->datatype = _type_from_variant(constant->value);
  691. constant->line = id_line;
  692. expr = constant;
  693. bfn = true;
  694. }
  695. if (!bfn && GDScriptLanguage::get_singleton()->get_named_globals_map().has(identifier)) {
  696. //check from singletons
  697. ConstantNode *constant = alloc_node<ConstantNode>();
  698. constant->value = GDScriptLanguage::get_singleton()->get_named_globals_map()[identifier];
  699. expr = constant;
  700. bfn = true;
  701. }
  702. if (!dependencies_only) {
  703. if (!bfn && ScriptServer::is_global_class(identifier)) {
  704. Ref<Script> scr = ResourceLoader::load(ScriptServer::get_global_class_path(identifier));
  705. if (scr.is_valid() && scr->is_valid()) {
  706. ConstantNode *constant = alloc_node<ConstantNode>();
  707. constant->value = scr;
  708. expr = constant;
  709. bfn = true;
  710. }
  711. }
  712. // Check parents for the constant
  713. if (!bfn) {
  714. // Using current_class instead of cln here, since cln is const*
  715. _determine_inheritance(current_class, false);
  716. if (cln->base_type.has_type && cln->base_type.kind == DataType::GDSCRIPT && cln->base_type.script_type->is_valid()) {
  717. Map<StringName, Variant> parent_constants;
  718. current_class->base_type.script_type->get_constants(&parent_constants);
  719. if (parent_constants.has(identifier)) {
  720. ConstantNode *constant = alloc_node<ConstantNode>();
  721. constant->value = parent_constants[identifier];
  722. expr = constant;
  723. bfn = true;
  724. }
  725. }
  726. }
  727. }
  728. }
  729. if (!bfn) {
  730. #ifdef DEBUG_ENABLED
  731. if (current_function) {
  732. int arg_idx = current_function->arguments.find(identifier);
  733. if (arg_idx != -1) {
  734. switch (tokenizer->get_token()) {
  735. case GDScriptTokenizer::TK_OP_ASSIGN_ADD:
  736. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_AND:
  737. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_OR:
  738. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_XOR:
  739. case GDScriptTokenizer::TK_OP_ASSIGN_DIV:
  740. case GDScriptTokenizer::TK_OP_ASSIGN_MOD:
  741. case GDScriptTokenizer::TK_OP_ASSIGN_MUL:
  742. case GDScriptTokenizer::TK_OP_ASSIGN_SHIFT_LEFT:
  743. case GDScriptTokenizer::TK_OP_ASSIGN_SHIFT_RIGHT:
  744. case GDScriptTokenizer::TK_OP_ASSIGN_SUB:
  745. case GDScriptTokenizer::TK_OP_ASSIGN: {
  746. // Assignment is not really usage
  747. } break;
  748. default: {
  749. current_function->arguments_usage.write[arg_idx] = current_function->arguments_usage[arg_idx] + 1;
  750. }
  751. }
  752. }
  753. }
  754. #endif // DEBUG_ENABLED
  755. IdentifierNode *id = alloc_node<IdentifierNode>();
  756. id->name = identifier;
  757. id->line = id_line;
  758. expr = id;
  759. }
  760. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_ADD || tokenizer->get_token() == GDScriptTokenizer::TK_OP_SUB || tokenizer->get_token() == GDScriptTokenizer::TK_OP_NOT || tokenizer->get_token() == GDScriptTokenizer::TK_OP_BIT_INVERT) {
  761. //single prefix operators like !expr +expr -expr ++expr --expr
  762. alloc_node<OperatorNode>();
  763. Expression e;
  764. e.is_op = true;
  765. switch (tokenizer->get_token()) {
  766. case GDScriptTokenizer::TK_OP_ADD:
  767. e.op = OperatorNode::OP_POS;
  768. break;
  769. case GDScriptTokenizer::TK_OP_SUB:
  770. e.op = OperatorNode::OP_NEG;
  771. break;
  772. case GDScriptTokenizer::TK_OP_NOT:
  773. e.op = OperatorNode::OP_NOT;
  774. break;
  775. case GDScriptTokenizer::TK_OP_BIT_INVERT:
  776. e.op = OperatorNode::OP_BIT_INVERT;
  777. break;
  778. default: {
  779. }
  780. }
  781. tokenizer->advance();
  782. if (e.op != OperatorNode::OP_NOT && tokenizer->get_token() == GDScriptTokenizer::TK_OP_NOT) {
  783. _set_error("Misplaced 'not'.");
  784. return nullptr;
  785. }
  786. expression.push_back(e);
  787. continue; //only exception, must continue...
  788. /*
  789. Node *subexpr=_parse_expression(op,p_static);
  790. if (!subexpr)
  791. return NULL;
  792. op->arguments.push_back(subexpr);
  793. expr=op;*/
  794. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_IS && tokenizer->get_token(1) == GDScriptTokenizer::TK_BUILT_IN_TYPE) {
  795. // 'is' operator with built-in type
  796. if (!expr) {
  797. _set_error("Expected identifier before 'is' operator");
  798. return nullptr;
  799. }
  800. OperatorNode *op = alloc_node<OperatorNode>();
  801. op->op = OperatorNode::OP_IS_BUILTIN;
  802. op->arguments.push_back(expr);
  803. tokenizer->advance();
  804. TypeNode *tn = alloc_node<TypeNode>();
  805. tn->vtype = tokenizer->get_token_type();
  806. op->arguments.push_back(tn);
  807. tokenizer->advance();
  808. expr = op;
  809. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BRACKET_OPEN) {
  810. // array
  811. tokenizer->advance();
  812. ArrayNode *arr = alloc_node<ArrayNode>();
  813. bool expecting_comma = false;
  814. while (true) {
  815. if (tokenizer->get_token() == GDScriptTokenizer::TK_EOF) {
  816. _set_error("Unterminated array");
  817. return nullptr;
  818. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BRACKET_CLOSE) {
  819. tokenizer->advance();
  820. break;
  821. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  822. tokenizer->advance(); //ignore newline
  823. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  824. if (!expecting_comma) {
  825. _set_error("expression or ']' expected");
  826. return nullptr;
  827. }
  828. expecting_comma = false;
  829. tokenizer->advance(); //ignore newline
  830. } else {
  831. //parse expression
  832. if (expecting_comma) {
  833. _set_error("',' or ']' expected");
  834. return nullptr;
  835. }
  836. Node *n = _parse_expression(arr, p_static, p_allow_assign, p_parsing_constant);
  837. if (!n) {
  838. return nullptr;
  839. }
  840. arr->elements.push_back(n);
  841. expecting_comma = true;
  842. }
  843. }
  844. expr = arr;
  845. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CURLY_BRACKET_OPEN) {
  846. // array
  847. tokenizer->advance();
  848. DictionaryNode *dict = alloc_node<DictionaryNode>();
  849. enum DictExpect {
  850. DICT_EXPECT_KEY,
  851. DICT_EXPECT_COLON,
  852. DICT_EXPECT_VALUE,
  853. DICT_EXPECT_COMMA
  854. };
  855. Node *key = nullptr;
  856. Set<Variant> keys;
  857. DictExpect expecting = DICT_EXPECT_KEY;
  858. while (true) {
  859. if (tokenizer->get_token() == GDScriptTokenizer::TK_EOF) {
  860. _set_error("Unterminated dictionary");
  861. return nullptr;
  862. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CURLY_BRACKET_CLOSE) {
  863. if (expecting == DICT_EXPECT_COLON) {
  864. _set_error("':' expected");
  865. return nullptr;
  866. }
  867. if (expecting == DICT_EXPECT_VALUE) {
  868. _set_error("value expected");
  869. return nullptr;
  870. }
  871. tokenizer->advance();
  872. break;
  873. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  874. tokenizer->advance(); //ignore newline
  875. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  876. if (expecting == DICT_EXPECT_KEY) {
  877. _set_error("key or '}' expected");
  878. return nullptr;
  879. }
  880. if (expecting == DICT_EXPECT_VALUE) {
  881. _set_error("value expected");
  882. return nullptr;
  883. }
  884. if (expecting == DICT_EXPECT_COLON) {
  885. _set_error("':' expected");
  886. return nullptr;
  887. }
  888. expecting = DICT_EXPECT_KEY;
  889. tokenizer->advance(); //ignore newline
  890. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON) {
  891. if (expecting == DICT_EXPECT_KEY) {
  892. _set_error("key or '}' expected");
  893. return nullptr;
  894. }
  895. if (expecting == DICT_EXPECT_VALUE) {
  896. _set_error("value expected");
  897. return nullptr;
  898. }
  899. if (expecting == DICT_EXPECT_COMMA) {
  900. _set_error("',' or '}' expected");
  901. return nullptr;
  902. }
  903. expecting = DICT_EXPECT_VALUE;
  904. tokenizer->advance(); //ignore newline
  905. } else {
  906. if (expecting == DICT_EXPECT_COMMA) {
  907. _set_error("',' or '}' expected");
  908. return nullptr;
  909. }
  910. if (expecting == DICT_EXPECT_COLON) {
  911. _set_error("':' expected");
  912. return nullptr;
  913. }
  914. if (expecting == DICT_EXPECT_KEY) {
  915. if (tokenizer->is_token_literal() && tokenizer->get_token(1) == GDScriptTokenizer::TK_OP_ASSIGN) {
  916. // We check with is_token_literal, as this allows us to use match/sync/etc. as a name
  917. //lua style identifier, easier to write
  918. ConstantNode *cn = alloc_node<ConstantNode>();
  919. cn->value = tokenizer->get_token_literal();
  920. cn->datatype = _type_from_variant(cn->value);
  921. key = cn;
  922. tokenizer->advance(2);
  923. expecting = DICT_EXPECT_VALUE;
  924. } else {
  925. //python/js style more flexible
  926. key = _parse_expression(dict, p_static, p_allow_assign, p_parsing_constant);
  927. if (!key) {
  928. return nullptr;
  929. }
  930. expecting = DICT_EXPECT_COLON;
  931. }
  932. }
  933. if (expecting == DICT_EXPECT_VALUE) {
  934. Node *value = _parse_expression(dict, p_static, p_allow_assign, p_parsing_constant);
  935. if (!value) {
  936. return nullptr;
  937. }
  938. expecting = DICT_EXPECT_COMMA;
  939. if (key->type == GDScriptParser::Node::TYPE_CONSTANT) {
  940. Variant const &keyName = static_cast<const GDScriptParser::ConstantNode *>(key)->value;
  941. if (keys.has(keyName)) {
  942. _set_error("Duplicate key found in Dictionary literal");
  943. return nullptr;
  944. }
  945. keys.insert(keyName);
  946. }
  947. DictionaryNode::Pair pair;
  948. pair.key = key;
  949. pair.value = value;
  950. dict->elements.push_back(pair);
  951. key = nullptr;
  952. }
  953. }
  954. }
  955. expr = dict;
  956. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_PERIOD && (tokenizer->is_token_literal(1) || tokenizer->get_token(1) == GDScriptTokenizer::TK_CURSOR)) {
  957. // We check with is_token_literal, as this allows us to use match/sync/etc. as a name
  958. // parent call
  959. tokenizer->advance(); //goto identifier
  960. OperatorNode *op = alloc_node<OperatorNode>();
  961. op->op = OperatorNode::OP_PARENT_CALL;
  962. /*SelfNode *self = alloc_node<SelfNode>();
  963. op->arguments.push_back(self);
  964. forbidden for now */
  965. StringName identifier;
  966. bool is_completion = _get_completable_identifier(COMPLETION_PARENT_FUNCTION, identifier) && for_completion;
  967. IdentifierNode *id = alloc_node<IdentifierNode>();
  968. id->name = identifier;
  969. op->arguments.push_back(id);
  970. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  971. if (!is_completion) {
  972. _set_error("Expected '(' for parent function call.");
  973. return nullptr;
  974. }
  975. } else {
  976. tokenizer->advance();
  977. if (!_parse_arguments(op, op->arguments, p_static, false, p_parsing_constant)) {
  978. return nullptr;
  979. }
  980. }
  981. expr = op;
  982. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_TYPE && expression.size() > 0 && expression[expression.size() - 1].is_op && expression[expression.size() - 1].op == OperatorNode::OP_IS) {
  983. Expression e = expression[expression.size() - 1];
  984. e.op = OperatorNode::OP_IS_BUILTIN;
  985. expression.write[expression.size() - 1] = e;
  986. TypeNode *tn = alloc_node<TypeNode>();
  987. tn->vtype = tokenizer->get_token_type();
  988. expr = tn;
  989. tokenizer->advance();
  990. } else {
  991. //find list [ or find dictionary {
  992. _set_error("Error parsing expression, misplaced: " + String(tokenizer->get_token_name(tokenizer->get_token())));
  993. return nullptr; //nothing
  994. }
  995. ERR_FAIL_COND_V_MSG(!expr, nullptr, "GDScriptParser bug, couldn't figure out what expression is.");
  996. /******************/
  997. /* Parse Indexing */
  998. /******************/
  999. while (true) {
  1000. //expressions can be indexed any number of times
  1001. if (tokenizer->get_token() == GDScriptTokenizer::TK_PERIOD) {
  1002. //indexing using "."
  1003. if (tokenizer->get_token(1) != GDScriptTokenizer::TK_CURSOR && !tokenizer->is_token_literal(1)) {
  1004. // We check with is_token_literal, as this allows us to use match/sync/etc. as a name
  1005. _set_error("Expected identifier as member");
  1006. return nullptr;
  1007. } else if (tokenizer->get_token(2) == GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  1008. //call!!
  1009. OperatorNode *op = alloc_node<OperatorNode>();
  1010. op->op = OperatorNode::OP_CALL;
  1011. tokenizer->advance();
  1012. IdentifierNode *id = alloc_node<IdentifierNode>();
  1013. StringName identifier;
  1014. if (_get_completable_identifier(COMPLETION_METHOD, identifier)) {
  1015. completion_node = op;
  1016. //indexing stuff
  1017. }
  1018. id->name = identifier;
  1019. op->arguments.push_back(expr); // call what
  1020. op->arguments.push_back(id); // call func
  1021. //get arguments
  1022. tokenizer->advance(1);
  1023. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  1024. _make_completable_call(0);
  1025. completion_node = op;
  1026. }
  1027. if (!_parse_arguments(op, op->arguments, p_static, true, p_parsing_constant)) {
  1028. return nullptr;
  1029. }
  1030. expr = op;
  1031. } else {
  1032. //simple indexing!
  1033. OperatorNode *op = alloc_node<OperatorNode>();
  1034. op->op = OperatorNode::OP_INDEX_NAMED;
  1035. tokenizer->advance();
  1036. StringName identifier;
  1037. if (_get_completable_identifier(COMPLETION_INDEX, identifier)) {
  1038. if (identifier == StringName()) {
  1039. identifier = "@temp"; //so it parses alright
  1040. }
  1041. completion_node = op;
  1042. //indexing stuff
  1043. }
  1044. IdentifierNode *id = alloc_node<IdentifierNode>();
  1045. id->name = identifier;
  1046. op->arguments.push_back(expr);
  1047. op->arguments.push_back(id);
  1048. expr = op;
  1049. }
  1050. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BRACKET_OPEN) {
  1051. //indexing using "[]"
  1052. OperatorNode *op = alloc_node<OperatorNode>();
  1053. op->op = OperatorNode::OP_INDEX;
  1054. tokenizer->advance(1);
  1055. parenthesis++;
  1056. Node *subexpr = _parse_expression(op, p_static, p_allow_assign, p_parsing_constant);
  1057. parenthesis--;
  1058. if (!subexpr) {
  1059. return nullptr;
  1060. }
  1061. if (tokenizer->get_token() != GDScriptTokenizer::TK_BRACKET_CLOSE) {
  1062. _set_error("Expected ']'");
  1063. return nullptr;
  1064. }
  1065. op->arguments.push_back(expr);
  1066. op->arguments.push_back(subexpr);
  1067. tokenizer->advance(1);
  1068. expr = op;
  1069. } else {
  1070. break;
  1071. }
  1072. }
  1073. /*****************/
  1074. /* Parse Casting */
  1075. /*****************/
  1076. bool has_casting = expr->type == Node::TYPE_CAST;
  1077. if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_AS) {
  1078. if (has_casting) {
  1079. _set_error("Unexpected 'as'.");
  1080. return nullptr;
  1081. }
  1082. CastNode *cn = alloc_node<CastNode>();
  1083. if (!_parse_type(cn->cast_type)) {
  1084. _set_error("Expected type after 'as'.");
  1085. return nullptr;
  1086. }
  1087. has_casting = true;
  1088. cn->source_node = expr;
  1089. expr = cn;
  1090. }
  1091. /******************/
  1092. /* Parse Operator */
  1093. /******************/
  1094. if (parenthesis > 0) {
  1095. //remove empty space (only allowed if inside parenthesis
  1096. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  1097. tokenizer->advance();
  1098. }
  1099. }
  1100. Expression e;
  1101. e.is_op = false;
  1102. e.node = expr;
  1103. expression.push_back(e);
  1104. // determine which operator is next
  1105. OperatorNode::Operator op;
  1106. bool valid = true;
  1107. //assign, if allowed is only allowed on the first operator
  1108. #define _VALIDATE_ASSIGN \
  1109. if (!p_allow_assign || has_casting) { \
  1110. _set_error("Unexpected assign."); \
  1111. return NULL; \
  1112. } \
  1113. p_allow_assign = false;
  1114. switch (tokenizer->get_token()) { //see operator
  1115. case GDScriptTokenizer::TK_OP_IN:
  1116. op = OperatorNode::OP_IN;
  1117. break;
  1118. case GDScriptTokenizer::TK_OP_EQUAL:
  1119. op = OperatorNode::OP_EQUAL;
  1120. break;
  1121. case GDScriptTokenizer::TK_OP_NOT_EQUAL:
  1122. op = OperatorNode::OP_NOT_EQUAL;
  1123. break;
  1124. case GDScriptTokenizer::TK_OP_LESS:
  1125. op = OperatorNode::OP_LESS;
  1126. break;
  1127. case GDScriptTokenizer::TK_OP_LESS_EQUAL:
  1128. op = OperatorNode::OP_LESS_EQUAL;
  1129. break;
  1130. case GDScriptTokenizer::TK_OP_GREATER:
  1131. op = OperatorNode::OP_GREATER;
  1132. break;
  1133. case GDScriptTokenizer::TK_OP_GREATER_EQUAL:
  1134. op = OperatorNode::OP_GREATER_EQUAL;
  1135. break;
  1136. case GDScriptTokenizer::TK_OP_AND:
  1137. op = OperatorNode::OP_AND;
  1138. break;
  1139. case GDScriptTokenizer::TK_OP_OR:
  1140. op = OperatorNode::OP_OR;
  1141. break;
  1142. case GDScriptTokenizer::TK_OP_ADD:
  1143. op = OperatorNode::OP_ADD;
  1144. break;
  1145. case GDScriptTokenizer::TK_OP_SUB:
  1146. op = OperatorNode::OP_SUB;
  1147. break;
  1148. case GDScriptTokenizer::TK_OP_MUL:
  1149. op = OperatorNode::OP_MUL;
  1150. break;
  1151. case GDScriptTokenizer::TK_OP_DIV:
  1152. op = OperatorNode::OP_DIV;
  1153. break;
  1154. case GDScriptTokenizer::TK_OP_MOD:
  1155. op = OperatorNode::OP_MOD;
  1156. break;
  1157. //case GDScriptTokenizer::TK_OP_NEG: op=OperatorNode::OP_NEG ; break;
  1158. case GDScriptTokenizer::TK_OP_SHIFT_LEFT:
  1159. op = OperatorNode::OP_SHIFT_LEFT;
  1160. break;
  1161. case GDScriptTokenizer::TK_OP_SHIFT_RIGHT:
  1162. op = OperatorNode::OP_SHIFT_RIGHT;
  1163. break;
  1164. case GDScriptTokenizer::TK_OP_ASSIGN: {
  1165. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN;
  1166. if (tokenizer->get_token(1) == GDScriptTokenizer::TK_CURSOR) {
  1167. //code complete assignment
  1168. completion_type = COMPLETION_ASSIGN;
  1169. completion_node = expr;
  1170. completion_class = current_class;
  1171. completion_function = current_function;
  1172. completion_line = tokenizer->get_token_line();
  1173. completion_block = current_block;
  1174. completion_found = true;
  1175. tokenizer->advance();
  1176. }
  1177. } break;
  1178. case GDScriptTokenizer::TK_OP_ASSIGN_ADD:
  1179. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_ADD;
  1180. break;
  1181. case GDScriptTokenizer::TK_OP_ASSIGN_SUB:
  1182. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_SUB;
  1183. break;
  1184. case GDScriptTokenizer::TK_OP_ASSIGN_MUL:
  1185. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_MUL;
  1186. break;
  1187. case GDScriptTokenizer::TK_OP_ASSIGN_DIV:
  1188. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_DIV;
  1189. break;
  1190. case GDScriptTokenizer::TK_OP_ASSIGN_MOD:
  1191. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_MOD;
  1192. break;
  1193. case GDScriptTokenizer::TK_OP_ASSIGN_SHIFT_LEFT:
  1194. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_SHIFT_LEFT;
  1195. break;
  1196. case GDScriptTokenizer::TK_OP_ASSIGN_SHIFT_RIGHT:
  1197. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_SHIFT_RIGHT;
  1198. break;
  1199. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_AND:
  1200. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_BIT_AND;
  1201. break;
  1202. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_OR:
  1203. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_BIT_OR;
  1204. break;
  1205. case GDScriptTokenizer::TK_OP_ASSIGN_BIT_XOR:
  1206. _VALIDATE_ASSIGN op = OperatorNode::OP_ASSIGN_BIT_XOR;
  1207. break;
  1208. case GDScriptTokenizer::TK_OP_BIT_AND:
  1209. op = OperatorNode::OP_BIT_AND;
  1210. break;
  1211. case GDScriptTokenizer::TK_OP_BIT_OR:
  1212. op = OperatorNode::OP_BIT_OR;
  1213. break;
  1214. case GDScriptTokenizer::TK_OP_BIT_XOR:
  1215. op = OperatorNode::OP_BIT_XOR;
  1216. break;
  1217. case GDScriptTokenizer::TK_PR_IS:
  1218. op = OperatorNode::OP_IS;
  1219. break;
  1220. case GDScriptTokenizer::TK_CF_IF:
  1221. op = OperatorNode::OP_TERNARY_IF;
  1222. break;
  1223. case GDScriptTokenizer::TK_CF_ELSE:
  1224. op = OperatorNode::OP_TERNARY_ELSE;
  1225. break;
  1226. default:
  1227. valid = false;
  1228. break;
  1229. }
  1230. if (valid) {
  1231. e.is_op = true;
  1232. e.op = op;
  1233. expression.push_back(e);
  1234. tokenizer->advance();
  1235. } else {
  1236. break;
  1237. }
  1238. }
  1239. /* Reduce the set set of expressions and place them in an operator tree, respecting precedence */
  1240. while (expression.size() > 1) {
  1241. int next_op = -1;
  1242. int min_priority = 0xFFFFF;
  1243. bool is_unary = false;
  1244. bool is_ternary = false;
  1245. for (int i = 0; i < expression.size(); i++) {
  1246. if (!expression[i].is_op) {
  1247. continue;
  1248. }
  1249. int priority;
  1250. bool unary = false;
  1251. bool ternary = false;
  1252. bool error = false;
  1253. bool right_to_left = false;
  1254. switch (expression[i].op) {
  1255. case OperatorNode::OP_IS:
  1256. case OperatorNode::OP_IS_BUILTIN:
  1257. priority = -1;
  1258. break; //before anything
  1259. case OperatorNode::OP_BIT_INVERT:
  1260. priority = 0;
  1261. unary = true;
  1262. break;
  1263. case OperatorNode::OP_NEG:
  1264. case OperatorNode::OP_POS:
  1265. priority = 1;
  1266. unary = true;
  1267. break;
  1268. case OperatorNode::OP_MUL:
  1269. priority = 2;
  1270. break;
  1271. case OperatorNode::OP_DIV:
  1272. priority = 2;
  1273. break;
  1274. case OperatorNode::OP_MOD:
  1275. priority = 2;
  1276. break;
  1277. case OperatorNode::OP_ADD:
  1278. priority = 3;
  1279. break;
  1280. case OperatorNode::OP_SUB:
  1281. priority = 3;
  1282. break;
  1283. case OperatorNode::OP_SHIFT_LEFT:
  1284. priority = 4;
  1285. break;
  1286. case OperatorNode::OP_SHIFT_RIGHT:
  1287. priority = 4;
  1288. break;
  1289. case OperatorNode::OP_BIT_AND:
  1290. priority = 5;
  1291. break;
  1292. case OperatorNode::OP_BIT_XOR:
  1293. priority = 6;
  1294. break;
  1295. case OperatorNode::OP_BIT_OR:
  1296. priority = 7;
  1297. break;
  1298. case OperatorNode::OP_LESS:
  1299. priority = 8;
  1300. break;
  1301. case OperatorNode::OP_LESS_EQUAL:
  1302. priority = 8;
  1303. break;
  1304. case OperatorNode::OP_GREATER:
  1305. priority = 8;
  1306. break;
  1307. case OperatorNode::OP_GREATER_EQUAL:
  1308. priority = 8;
  1309. break;
  1310. case OperatorNode::OP_EQUAL:
  1311. priority = 8;
  1312. break;
  1313. case OperatorNode::OP_NOT_EQUAL:
  1314. priority = 8;
  1315. break;
  1316. case OperatorNode::OP_IN:
  1317. priority = 10;
  1318. break;
  1319. case OperatorNode::OP_NOT:
  1320. priority = 11;
  1321. unary = true;
  1322. break;
  1323. case OperatorNode::OP_AND:
  1324. priority = 12;
  1325. break;
  1326. case OperatorNode::OP_OR:
  1327. priority = 13;
  1328. break;
  1329. case OperatorNode::OP_TERNARY_IF:
  1330. priority = 14;
  1331. ternary = true;
  1332. right_to_left = true;
  1333. break;
  1334. case OperatorNode::OP_TERNARY_ELSE:
  1335. priority = 14;
  1336. error = true;
  1337. // Rigth-to-left should be false in this case, otherwise it would always error.
  1338. break;
  1339. case OperatorNode::OP_ASSIGN:
  1340. priority = 15;
  1341. break;
  1342. case OperatorNode::OP_ASSIGN_ADD:
  1343. priority = 15;
  1344. break;
  1345. case OperatorNode::OP_ASSIGN_SUB:
  1346. priority = 15;
  1347. break;
  1348. case OperatorNode::OP_ASSIGN_MUL:
  1349. priority = 15;
  1350. break;
  1351. case OperatorNode::OP_ASSIGN_DIV:
  1352. priority = 15;
  1353. break;
  1354. case OperatorNode::OP_ASSIGN_MOD:
  1355. priority = 15;
  1356. break;
  1357. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  1358. priority = 15;
  1359. break;
  1360. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  1361. priority = 15;
  1362. break;
  1363. case OperatorNode::OP_ASSIGN_BIT_AND:
  1364. priority = 15;
  1365. break;
  1366. case OperatorNode::OP_ASSIGN_BIT_OR:
  1367. priority = 15;
  1368. break;
  1369. case OperatorNode::OP_ASSIGN_BIT_XOR:
  1370. priority = 15;
  1371. break;
  1372. default: {
  1373. _set_error("GDScriptParser bug, invalid operator in expression: " + itos(expression[i].op));
  1374. return nullptr;
  1375. }
  1376. }
  1377. if (priority < min_priority || (right_to_left && priority == min_priority)) {
  1378. // < is used for left to right (default)
  1379. // <= is used for right to left
  1380. if (error) {
  1381. _set_error("Unexpected operator");
  1382. return nullptr;
  1383. }
  1384. next_op = i;
  1385. min_priority = priority;
  1386. is_unary = unary;
  1387. is_ternary = ternary;
  1388. }
  1389. }
  1390. if (next_op == -1) {
  1391. _set_error("Yet another parser bug....");
  1392. ERR_FAIL_V(nullptr);
  1393. }
  1394. // OK! create operator..
  1395. if (is_unary) {
  1396. int expr_pos = next_op;
  1397. while (expression[expr_pos].is_op) {
  1398. expr_pos++;
  1399. if (expr_pos == expression.size()) {
  1400. //can happen..
  1401. _set_error("Unexpected end of expression...");
  1402. return nullptr;
  1403. }
  1404. }
  1405. //consecutively do unary operators
  1406. for (int i = expr_pos - 1; i >= next_op; i--) {
  1407. OperatorNode *op = alloc_node<OperatorNode>();
  1408. op->op = expression[i].op;
  1409. op->arguments.push_back(expression[i + 1].node);
  1410. op->line = op_line; //line might have been changed from a \n
  1411. expression.write[i].is_op = false;
  1412. expression.write[i].node = op;
  1413. expression.remove(i + 1);
  1414. }
  1415. } else if (is_ternary) {
  1416. if (next_op < 1 || next_op >= (expression.size() - 1)) {
  1417. _set_error("Parser bug...");
  1418. ERR_FAIL_V(nullptr);
  1419. }
  1420. if (next_op >= (expression.size() - 2) || expression[next_op + 2].op != OperatorNode::OP_TERNARY_ELSE) {
  1421. _set_error("Expected else after ternary if.");
  1422. return nullptr;
  1423. }
  1424. if (next_op >= (expression.size() - 3)) {
  1425. _set_error("Expected value after ternary else.");
  1426. return nullptr;
  1427. }
  1428. OperatorNode *op = alloc_node<OperatorNode>();
  1429. op->op = expression[next_op].op;
  1430. op->line = op_line; //line might have been changed from a \n
  1431. if (expression[next_op - 1].is_op) {
  1432. _set_error("Parser bug...");
  1433. ERR_FAIL_V(nullptr);
  1434. }
  1435. if (expression[next_op + 1].is_op) {
  1436. // this is not invalid and can really appear
  1437. // but it becomes invalid anyway because no binary op
  1438. // can be followed by a unary op in a valid combination,
  1439. // due to how precedence works, unaries will always disappear first
  1440. _set_error("Unexpected two consecutive operators after ternary if.");
  1441. return nullptr;
  1442. }
  1443. if (expression[next_op + 3].is_op) {
  1444. // this is not invalid and can really appear
  1445. // but it becomes invalid anyway because no binary op
  1446. // can be followed by a unary op in a valid combination,
  1447. // due to how precedence works, unaries will always disappear first
  1448. _set_error("Unexpected two consecutive operators after ternary else.");
  1449. return nullptr;
  1450. }
  1451. op->arguments.push_back(expression[next_op + 1].node); //next expression goes as first
  1452. op->arguments.push_back(expression[next_op - 1].node); //left expression goes as when-true
  1453. op->arguments.push_back(expression[next_op + 3].node); //expression after next goes as when-false
  1454. //replace all 3 nodes by this operator and make it an expression
  1455. expression.write[next_op - 1].node = op;
  1456. expression.remove(next_op);
  1457. expression.remove(next_op);
  1458. expression.remove(next_op);
  1459. expression.remove(next_op);
  1460. } else {
  1461. if (next_op < 1 || next_op >= (expression.size() - 1)) {
  1462. _set_error("Parser bug...");
  1463. ERR_FAIL_V(nullptr);
  1464. }
  1465. OperatorNode *op = alloc_node<OperatorNode>();
  1466. op->op = expression[next_op].op;
  1467. op->line = op_line; //line might have been changed from a \n
  1468. if (expression[next_op - 1].is_op) {
  1469. _set_error("Parser bug...");
  1470. ERR_FAIL_V(nullptr);
  1471. }
  1472. if (expression[next_op + 1].is_op) {
  1473. // this is not invalid and can really appear
  1474. // but it becomes invalid anyway because no binary op
  1475. // can be followed by a unary op in a valid combination,
  1476. // due to how precedence works, unaries will always disappear first
  1477. _set_error("Unexpected two consecutive operators.");
  1478. return nullptr;
  1479. }
  1480. op->arguments.push_back(expression[next_op - 1].node); //expression goes as left
  1481. op->arguments.push_back(expression[next_op + 1].node); //next expression goes as right
  1482. //replace all 3 nodes by this operator and make it an expression
  1483. expression.write[next_op - 1].node = op;
  1484. expression.remove(next_op);
  1485. expression.remove(next_op);
  1486. }
  1487. }
  1488. return expression[0].node;
  1489. }
  1490. GDScriptParser::Node *GDScriptParser::_reduce_expression(Node *p_node, bool p_to_const) {
  1491. switch (p_node->type) {
  1492. case Node::TYPE_BUILT_IN_FUNCTION: {
  1493. //many may probably be optimizable
  1494. return p_node;
  1495. } break;
  1496. case Node::TYPE_ARRAY: {
  1497. ArrayNode *an = static_cast<ArrayNode *>(p_node);
  1498. bool all_constants = true;
  1499. for (int i = 0; i < an->elements.size(); i++) {
  1500. an->elements.write[i] = _reduce_expression(an->elements[i], p_to_const);
  1501. if (an->elements[i]->type != Node::TYPE_CONSTANT) {
  1502. all_constants = false;
  1503. }
  1504. }
  1505. if (all_constants && p_to_const) {
  1506. //reduce constant array expression
  1507. ConstantNode *cn = alloc_node<ConstantNode>();
  1508. Array arr;
  1509. arr.resize(an->elements.size());
  1510. for (int i = 0; i < an->elements.size(); i++) {
  1511. ConstantNode *acn = static_cast<ConstantNode *>(an->elements[i]);
  1512. arr[i] = acn->value;
  1513. }
  1514. cn->value = arr;
  1515. cn->datatype = _type_from_variant(cn->value);
  1516. return cn;
  1517. }
  1518. return an;
  1519. } break;
  1520. case Node::TYPE_DICTIONARY: {
  1521. DictionaryNode *dn = static_cast<DictionaryNode *>(p_node);
  1522. bool all_constants = true;
  1523. for (int i = 0; i < dn->elements.size(); i++) {
  1524. dn->elements.write[i].key = _reduce_expression(dn->elements[i].key, p_to_const);
  1525. if (dn->elements[i].key->type != Node::TYPE_CONSTANT) {
  1526. all_constants = false;
  1527. }
  1528. dn->elements.write[i].value = _reduce_expression(dn->elements[i].value, p_to_const);
  1529. if (dn->elements[i].value->type != Node::TYPE_CONSTANT) {
  1530. all_constants = false;
  1531. }
  1532. }
  1533. if (all_constants && p_to_const) {
  1534. //reduce constant array expression
  1535. ConstantNode *cn = alloc_node<ConstantNode>();
  1536. Dictionary dict;
  1537. for (int i = 0; i < dn->elements.size(); i++) {
  1538. ConstantNode *key_c = static_cast<ConstantNode *>(dn->elements[i].key);
  1539. ConstantNode *value_c = static_cast<ConstantNode *>(dn->elements[i].value);
  1540. dict[key_c->value] = value_c->value;
  1541. }
  1542. cn->value = dict;
  1543. cn->datatype = _type_from_variant(cn->value);
  1544. return cn;
  1545. }
  1546. return dn;
  1547. } break;
  1548. case Node::TYPE_OPERATOR: {
  1549. OperatorNode *op = static_cast<OperatorNode *>(p_node);
  1550. bool all_constants = true;
  1551. int last_not_constant = -1;
  1552. for (int i = 0; i < op->arguments.size(); i++) {
  1553. op->arguments.write[i] = _reduce_expression(op->arguments[i], p_to_const);
  1554. if (op->arguments[i]->type != Node::TYPE_CONSTANT) {
  1555. all_constants = false;
  1556. last_not_constant = i;
  1557. }
  1558. }
  1559. if (op->op == OperatorNode::OP_IS) {
  1560. //nothing much
  1561. return op;
  1562. }
  1563. if (op->op == OperatorNode::OP_PARENT_CALL) {
  1564. //nothing much
  1565. return op;
  1566. } else if (op->op == OperatorNode::OP_CALL) {
  1567. //can reduce base type constructors
  1568. if ((op->arguments[0]->type == Node::TYPE_TYPE || (op->arguments[0]->type == Node::TYPE_BUILT_IN_FUNCTION && GDScriptFunctions::is_deterministic(static_cast<BuiltInFunctionNode *>(op->arguments[0])->function))) && last_not_constant == 0) {
  1569. //native type constructor or intrinsic function
  1570. const Variant **vptr = nullptr;
  1571. Vector<Variant *> ptrs;
  1572. if (op->arguments.size() > 1) {
  1573. ptrs.resize(op->arguments.size() - 1);
  1574. for (int i = 0; i < ptrs.size(); i++) {
  1575. ConstantNode *cn = static_cast<ConstantNode *>(op->arguments[i + 1]);
  1576. ptrs.write[i] = &cn->value;
  1577. }
  1578. vptr = (const Variant **)&ptrs[0];
  1579. }
  1580. Variant::CallError ce;
  1581. Variant v;
  1582. if (op->arguments[0]->type == Node::TYPE_TYPE) {
  1583. TypeNode *tn = static_cast<TypeNode *>(op->arguments[0]);
  1584. v = Variant::construct(tn->vtype, vptr, ptrs.size(), ce);
  1585. } else {
  1586. GDScriptFunctions::Function func = static_cast<BuiltInFunctionNode *>(op->arguments[0])->function;
  1587. GDScriptFunctions::call(func, vptr, ptrs.size(), v, ce);
  1588. }
  1589. if (ce.error != Variant::CallError::CALL_OK) {
  1590. String errwhere;
  1591. if (op->arguments[0]->type == Node::TYPE_TYPE) {
  1592. TypeNode *tn = static_cast<TypeNode *>(op->arguments[0]);
  1593. errwhere = "'" + Variant::get_type_name(tn->vtype) + "' constructor";
  1594. } else {
  1595. GDScriptFunctions::Function func = static_cast<BuiltInFunctionNode *>(op->arguments[0])->function;
  1596. errwhere = String("'") + GDScriptFunctions::get_func_name(func) + "' intrinsic function";
  1597. }
  1598. switch (ce.error) {
  1599. case Variant::CallError::CALL_ERROR_INVALID_ARGUMENT: {
  1600. _set_error("Invalid argument (#" + itos(ce.argument + 1) + ") for " + errwhere + ".");
  1601. } break;
  1602. case Variant::CallError::CALL_ERROR_TOO_MANY_ARGUMENTS: {
  1603. _set_error("Too many arguments for " + errwhere + ".");
  1604. } break;
  1605. case Variant::CallError::CALL_ERROR_TOO_FEW_ARGUMENTS: {
  1606. _set_error("Too few arguments for " + errwhere + ".");
  1607. } break;
  1608. default: {
  1609. _set_error("Invalid arguments for " + errwhere + ".");
  1610. } break;
  1611. }
  1612. error_line = op->line;
  1613. return p_node;
  1614. }
  1615. ConstantNode *cn = alloc_node<ConstantNode>();
  1616. cn->value = v;
  1617. cn->datatype = _type_from_variant(v);
  1618. return cn;
  1619. }
  1620. return op; //don't reduce yet
  1621. } else if (op->op == OperatorNode::OP_YIELD) {
  1622. return op;
  1623. } else if (op->op == OperatorNode::OP_INDEX) {
  1624. //can reduce indices into constant arrays or dictionaries
  1625. if (all_constants) {
  1626. ConstantNode *ca = static_cast<ConstantNode *>(op->arguments[0]);
  1627. ConstantNode *cb = static_cast<ConstantNode *>(op->arguments[1]);
  1628. bool valid;
  1629. Variant v = ca->value.get(cb->value, &valid);
  1630. if (!valid) {
  1631. _set_error("invalid index in constant expression");
  1632. error_line = op->line;
  1633. return op;
  1634. }
  1635. ConstantNode *cn = alloc_node<ConstantNode>();
  1636. cn->value = v;
  1637. cn->datatype = _type_from_variant(v);
  1638. return cn;
  1639. }
  1640. return op;
  1641. } else if (op->op == OperatorNode::OP_INDEX_NAMED) {
  1642. if (op->arguments[0]->type == Node::TYPE_CONSTANT && op->arguments[1]->type == Node::TYPE_IDENTIFIER) {
  1643. ConstantNode *ca = static_cast<ConstantNode *>(op->arguments[0]);
  1644. IdentifierNode *ib = static_cast<IdentifierNode *>(op->arguments[1]);
  1645. bool valid;
  1646. Variant v = ca->value.get_named(ib->name, &valid);
  1647. if (!valid) {
  1648. _set_error("invalid index '" + String(ib->name) + "' in constant expression");
  1649. error_line = op->line;
  1650. return op;
  1651. }
  1652. ConstantNode *cn = alloc_node<ConstantNode>();
  1653. cn->value = v;
  1654. cn->datatype = _type_from_variant(v);
  1655. return cn;
  1656. }
  1657. return op;
  1658. }
  1659. //validate assignment (don't assign to constant expression
  1660. switch (op->op) {
  1661. case OperatorNode::OP_ASSIGN:
  1662. case OperatorNode::OP_ASSIGN_ADD:
  1663. case OperatorNode::OP_ASSIGN_SUB:
  1664. case OperatorNode::OP_ASSIGN_MUL:
  1665. case OperatorNode::OP_ASSIGN_DIV:
  1666. case OperatorNode::OP_ASSIGN_MOD:
  1667. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  1668. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  1669. case OperatorNode::OP_ASSIGN_BIT_AND:
  1670. case OperatorNode::OP_ASSIGN_BIT_OR:
  1671. case OperatorNode::OP_ASSIGN_BIT_XOR: {
  1672. if (op->arguments[0]->type == Node::TYPE_CONSTANT) {
  1673. _set_error("Can't assign to constant", tokenizer->get_token_line() - 1);
  1674. error_line = op->line;
  1675. return op;
  1676. } else if (op->arguments[0]->type == Node::TYPE_SELF) {
  1677. _set_error("Can't assign to self.", op->line);
  1678. error_line = op->line;
  1679. return op;
  1680. }
  1681. if (op->arguments[0]->type == Node::TYPE_OPERATOR) {
  1682. OperatorNode *on = static_cast<OperatorNode *>(op->arguments[0]);
  1683. if (on->op != OperatorNode::OP_INDEX && on->op != OperatorNode::OP_INDEX_NAMED) {
  1684. _set_error("Can't assign to an expression", tokenizer->get_token_line() - 1);
  1685. error_line = op->line;
  1686. return op;
  1687. }
  1688. }
  1689. } break;
  1690. default: {
  1691. break;
  1692. }
  1693. }
  1694. //now se if all are constants
  1695. if (!all_constants) {
  1696. return op; //nothing to reduce from here on
  1697. }
  1698. #define _REDUCE_UNARY(m_vop) \
  1699. bool valid = false; \
  1700. Variant res; \
  1701. Variant::evaluate(m_vop, static_cast<ConstantNode *>(op->arguments[0])->value, Variant(), res, valid); \
  1702. if (!valid) { \
  1703. _set_error("Invalid operand for unary operator"); \
  1704. error_line = op->line; \
  1705. return p_node; \
  1706. } \
  1707. ConstantNode *cn = alloc_node<ConstantNode>(); \
  1708. cn->value = res; \
  1709. cn->datatype = _type_from_variant(res); \
  1710. return cn;
  1711. #define _REDUCE_BINARY(m_vop) \
  1712. bool valid = false; \
  1713. Variant res; \
  1714. Variant::evaluate(m_vop, static_cast<ConstantNode *>(op->arguments[0])->value, static_cast<ConstantNode *>(op->arguments[1])->value, res, valid); \
  1715. if (!valid) { \
  1716. _set_error("Invalid operands for operator"); \
  1717. error_line = op->line; \
  1718. return p_node; \
  1719. } \
  1720. ConstantNode *cn = alloc_node<ConstantNode>(); \
  1721. cn->value = res; \
  1722. cn->datatype = _type_from_variant(res); \
  1723. return cn;
  1724. switch (op->op) {
  1725. //unary operators
  1726. case OperatorNode::OP_NEG: {
  1727. _REDUCE_UNARY(Variant::OP_NEGATE);
  1728. } break;
  1729. case OperatorNode::OP_POS: {
  1730. _REDUCE_UNARY(Variant::OP_POSITIVE);
  1731. } break;
  1732. case OperatorNode::OP_NOT: {
  1733. _REDUCE_UNARY(Variant::OP_NOT);
  1734. } break;
  1735. case OperatorNode::OP_BIT_INVERT: {
  1736. _REDUCE_UNARY(Variant::OP_BIT_NEGATE);
  1737. } break;
  1738. //binary operators (in precedence order)
  1739. case OperatorNode::OP_IN: {
  1740. _REDUCE_BINARY(Variant::OP_IN);
  1741. } break;
  1742. case OperatorNode::OP_EQUAL: {
  1743. _REDUCE_BINARY(Variant::OP_EQUAL);
  1744. } break;
  1745. case OperatorNode::OP_NOT_EQUAL: {
  1746. _REDUCE_BINARY(Variant::OP_NOT_EQUAL);
  1747. } break;
  1748. case OperatorNode::OP_LESS: {
  1749. _REDUCE_BINARY(Variant::OP_LESS);
  1750. } break;
  1751. case OperatorNode::OP_LESS_EQUAL: {
  1752. _REDUCE_BINARY(Variant::OP_LESS_EQUAL);
  1753. } break;
  1754. case OperatorNode::OP_GREATER: {
  1755. _REDUCE_BINARY(Variant::OP_GREATER);
  1756. } break;
  1757. case OperatorNode::OP_GREATER_EQUAL: {
  1758. _REDUCE_BINARY(Variant::OP_GREATER_EQUAL);
  1759. } break;
  1760. case OperatorNode::OP_AND: {
  1761. _REDUCE_BINARY(Variant::OP_AND);
  1762. } break;
  1763. case OperatorNode::OP_OR: {
  1764. _REDUCE_BINARY(Variant::OP_OR);
  1765. } break;
  1766. case OperatorNode::OP_ADD: {
  1767. _REDUCE_BINARY(Variant::OP_ADD);
  1768. } break;
  1769. case OperatorNode::OP_SUB: {
  1770. _REDUCE_BINARY(Variant::OP_SUBTRACT);
  1771. } break;
  1772. case OperatorNode::OP_MUL: {
  1773. _REDUCE_BINARY(Variant::OP_MULTIPLY);
  1774. } break;
  1775. case OperatorNode::OP_DIV: {
  1776. _REDUCE_BINARY(Variant::OP_DIVIDE);
  1777. } break;
  1778. case OperatorNode::OP_MOD: {
  1779. _REDUCE_BINARY(Variant::OP_MODULE);
  1780. } break;
  1781. case OperatorNode::OP_SHIFT_LEFT: {
  1782. _REDUCE_BINARY(Variant::OP_SHIFT_LEFT);
  1783. } break;
  1784. case OperatorNode::OP_SHIFT_RIGHT: {
  1785. _REDUCE_BINARY(Variant::OP_SHIFT_RIGHT);
  1786. } break;
  1787. case OperatorNode::OP_BIT_AND: {
  1788. _REDUCE_BINARY(Variant::OP_BIT_AND);
  1789. } break;
  1790. case OperatorNode::OP_BIT_OR: {
  1791. _REDUCE_BINARY(Variant::OP_BIT_OR);
  1792. } break;
  1793. case OperatorNode::OP_BIT_XOR: {
  1794. _REDUCE_BINARY(Variant::OP_BIT_XOR);
  1795. } break;
  1796. case OperatorNode::OP_TERNARY_IF: {
  1797. if (static_cast<ConstantNode *>(op->arguments[0])->value.booleanize()) {
  1798. return op->arguments[1];
  1799. } else {
  1800. return op->arguments[2];
  1801. }
  1802. } break;
  1803. default: {
  1804. ERR_FAIL_V(op);
  1805. }
  1806. }
  1807. } break;
  1808. default: {
  1809. return p_node;
  1810. } break;
  1811. }
  1812. }
  1813. GDScriptParser::Node *GDScriptParser::_parse_and_reduce_expression(Node *p_parent, bool p_static, bool p_reduce_const, bool p_allow_assign) {
  1814. Node *expr = _parse_expression(p_parent, p_static, p_allow_assign, p_reduce_const);
  1815. if (!expr || error_set) {
  1816. return nullptr;
  1817. }
  1818. expr = _reduce_expression(expr, p_reduce_const);
  1819. if (!expr || error_set) {
  1820. return nullptr;
  1821. }
  1822. return expr;
  1823. }
  1824. bool GDScriptParser::_reduce_export_var_type(Variant &p_value, int p_line) {
  1825. if (p_value.get_type() == Variant::ARRAY) {
  1826. Array arr = p_value;
  1827. for (int i = 0; i < arr.size(); i++) {
  1828. if (!_reduce_export_var_type(arr[i], p_line)) {
  1829. return false;
  1830. }
  1831. }
  1832. return true;
  1833. }
  1834. if (p_value.get_type() == Variant::DICTIONARY) {
  1835. Dictionary dict = p_value;
  1836. for (int i = 0; i < dict.size(); i++) {
  1837. Variant value = dict.get_value_at_index(i);
  1838. if (!_reduce_export_var_type(value, p_line)) {
  1839. return false;
  1840. }
  1841. }
  1842. return true;
  1843. }
  1844. // validate type
  1845. DataType type = _type_from_variant(p_value);
  1846. if (type.kind == DataType::BUILTIN) {
  1847. return true;
  1848. } else if (type.kind == DataType::NATIVE) {
  1849. if (ClassDB::is_parent_class(type.native_type, "Resource")) {
  1850. return true;
  1851. }
  1852. }
  1853. _set_error("Invalid export type. Only built-in and native resource types can be exported.", p_line);
  1854. return false;
  1855. }
  1856. bool GDScriptParser::_recover_from_completion() {
  1857. if (!completion_found) {
  1858. return false; //can't recover if no completion
  1859. }
  1860. //skip stuff until newline
  1861. while (tokenizer->get_token() != GDScriptTokenizer::TK_NEWLINE && tokenizer->get_token() != GDScriptTokenizer::TK_EOF && tokenizer->get_token() != GDScriptTokenizer::TK_ERROR) {
  1862. tokenizer->advance();
  1863. }
  1864. completion_found = false;
  1865. error_set = false;
  1866. if (tokenizer->get_token() == GDScriptTokenizer::TK_ERROR) {
  1867. error_set = true;
  1868. }
  1869. return true;
  1870. }
  1871. GDScriptParser::PatternNode *GDScriptParser::_parse_pattern(bool p_static) {
  1872. PatternNode *pattern = alloc_node<PatternNode>();
  1873. GDScriptTokenizer::Token token = tokenizer->get_token();
  1874. if (error_set) {
  1875. return nullptr;
  1876. }
  1877. if (token == GDScriptTokenizer::TK_EOF) {
  1878. return nullptr;
  1879. }
  1880. switch (token) {
  1881. // array
  1882. case GDScriptTokenizer::TK_BRACKET_OPEN: {
  1883. tokenizer->advance();
  1884. pattern->pt_type = GDScriptParser::PatternNode::PT_ARRAY;
  1885. while (true) {
  1886. if (tokenizer->get_token() == GDScriptTokenizer::TK_BRACKET_CLOSE) {
  1887. tokenizer->advance();
  1888. break;
  1889. }
  1890. if (tokenizer->get_token() == GDScriptTokenizer::TK_PERIOD && tokenizer->get_token(1) == GDScriptTokenizer::TK_PERIOD) {
  1891. // match everything
  1892. tokenizer->advance(2);
  1893. PatternNode *sub_pattern = alloc_node<PatternNode>();
  1894. sub_pattern->pt_type = GDScriptParser::PatternNode::PT_IGNORE_REST;
  1895. pattern->array.push_back(sub_pattern);
  1896. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA && tokenizer->get_token(1) == GDScriptTokenizer::TK_BRACKET_CLOSE) {
  1897. tokenizer->advance(2);
  1898. break;
  1899. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BRACKET_CLOSE) {
  1900. tokenizer->advance(1);
  1901. break;
  1902. } else {
  1903. _set_error("'..' pattern only allowed at the end of an array pattern");
  1904. return nullptr;
  1905. }
  1906. }
  1907. PatternNode *sub_pattern = _parse_pattern(p_static);
  1908. if (!sub_pattern) {
  1909. return nullptr;
  1910. }
  1911. pattern->array.push_back(sub_pattern);
  1912. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  1913. tokenizer->advance();
  1914. continue;
  1915. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_BRACKET_CLOSE) {
  1916. tokenizer->advance();
  1917. break;
  1918. } else {
  1919. _set_error("Not a valid pattern");
  1920. return nullptr;
  1921. }
  1922. }
  1923. } break;
  1924. // bind
  1925. case GDScriptTokenizer::TK_PR_VAR: {
  1926. tokenizer->advance();
  1927. if (!tokenizer->is_token_literal()) {
  1928. _set_error("Expected identifier for binding variable name.");
  1929. return nullptr;
  1930. }
  1931. pattern->pt_type = GDScriptParser::PatternNode::PT_BIND;
  1932. pattern->bind = tokenizer->get_token_literal();
  1933. // Check if variable name is already used
  1934. BlockNode *bl = current_block;
  1935. while (bl) {
  1936. if (bl->variables.has(pattern->bind)) {
  1937. _set_error("Binding name of '" + pattern->bind.operator String() + "' is already declared in this scope.");
  1938. return nullptr;
  1939. }
  1940. bl = bl->parent_block;
  1941. }
  1942. // Create local variable for proper identifier detection later
  1943. LocalVarNode *lv = alloc_node<LocalVarNode>();
  1944. lv->name = pattern->bind;
  1945. current_block->variables.insert(lv->name, lv);
  1946. tokenizer->advance();
  1947. } break;
  1948. // dictionary
  1949. case GDScriptTokenizer::TK_CURLY_BRACKET_OPEN: {
  1950. tokenizer->advance();
  1951. pattern->pt_type = GDScriptParser::PatternNode::PT_DICTIONARY;
  1952. while (true) {
  1953. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURLY_BRACKET_CLOSE) {
  1954. tokenizer->advance();
  1955. break;
  1956. }
  1957. if (tokenizer->get_token() == GDScriptTokenizer::TK_PERIOD && tokenizer->get_token(1) == GDScriptTokenizer::TK_PERIOD) {
  1958. // match everything
  1959. tokenizer->advance(2);
  1960. PatternNode *sub_pattern = alloc_node<PatternNode>();
  1961. sub_pattern->pt_type = PatternNode::PT_IGNORE_REST;
  1962. pattern->array.push_back(sub_pattern);
  1963. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA && tokenizer->get_token(1) == GDScriptTokenizer::TK_CURLY_BRACKET_CLOSE) {
  1964. tokenizer->advance(2);
  1965. break;
  1966. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CURLY_BRACKET_CLOSE) {
  1967. tokenizer->advance(1);
  1968. break;
  1969. } else {
  1970. _set_error("'..' pattern only allowed at the end of a dictionary pattern");
  1971. return nullptr;
  1972. }
  1973. }
  1974. Node *key = _parse_and_reduce_expression(pattern, p_static);
  1975. if (!key) {
  1976. _set_error("Not a valid key in pattern");
  1977. return nullptr;
  1978. }
  1979. if (key->type != GDScriptParser::Node::TYPE_CONSTANT) {
  1980. _set_error("Not a constant expression as key");
  1981. return nullptr;
  1982. }
  1983. if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON) {
  1984. tokenizer->advance();
  1985. PatternNode *value = _parse_pattern(p_static);
  1986. if (!value) {
  1987. _set_error("Expected pattern in dictionary value");
  1988. return nullptr;
  1989. }
  1990. pattern->dictionary.insert(static_cast<ConstantNode *>(key), value);
  1991. } else {
  1992. pattern->dictionary.insert(static_cast<ConstantNode *>(key), NULL);
  1993. }
  1994. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  1995. tokenizer->advance();
  1996. continue;
  1997. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CURLY_BRACKET_CLOSE) {
  1998. tokenizer->advance();
  1999. break;
  2000. } else {
  2001. _set_error("Not a valid pattern");
  2002. return nullptr;
  2003. }
  2004. }
  2005. } break;
  2006. case GDScriptTokenizer::TK_WILDCARD: {
  2007. tokenizer->advance();
  2008. pattern->pt_type = PatternNode::PT_WILDCARD;
  2009. } break;
  2010. // all the constants like strings and numbers
  2011. default: {
  2012. Node *value = _parse_and_reduce_expression(pattern, p_static);
  2013. if (!value) {
  2014. _set_error("Expect constant expression or variables in a pattern");
  2015. return nullptr;
  2016. }
  2017. if (value->type == Node::TYPE_OPERATOR) {
  2018. // Maybe it's SomeEnum.VALUE
  2019. Node *current_value = value;
  2020. while (current_value->type == Node::TYPE_OPERATOR) {
  2021. OperatorNode *op_node = static_cast<OperatorNode *>(current_value);
  2022. if (op_node->op != OperatorNode::OP_INDEX_NAMED) {
  2023. _set_error("Invalid operator in pattern. Only index (`A.B`) is allowed");
  2024. return nullptr;
  2025. }
  2026. current_value = op_node->arguments[0];
  2027. }
  2028. if (current_value->type != Node::TYPE_IDENTIFIER) {
  2029. _set_error("Only constant expression or variables allowed in a pattern");
  2030. return nullptr;
  2031. }
  2032. } else if (value->type != Node::TYPE_IDENTIFIER && value->type != Node::TYPE_CONSTANT) {
  2033. _set_error("Only constant expressions or variables allowed in a pattern");
  2034. return nullptr;
  2035. }
  2036. pattern->pt_type = PatternNode::PT_CONSTANT;
  2037. pattern->constant = value;
  2038. } break;
  2039. }
  2040. return pattern;
  2041. }
  2042. void GDScriptParser::_parse_pattern_block(BlockNode *p_block, Vector<PatternBranchNode *> &p_branches, bool p_static) {
  2043. IndentLevel current_level = indent_level.back()->get();
  2044. p_block->has_return = true;
  2045. bool catch_all_appeared = false;
  2046. while (true) {
  2047. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE && _parse_newline()) {
  2048. ;
  2049. }
  2050. // GDScriptTokenizer::Token token = tokenizer->get_token();
  2051. if (error_set) {
  2052. return;
  2053. }
  2054. if (current_level.indent > indent_level.back()->get().indent) {
  2055. break; // go back a level
  2056. }
  2057. pending_newline = -1;
  2058. PatternBranchNode *branch = alloc_node<PatternBranchNode>();
  2059. branch->body = alloc_node<BlockNode>();
  2060. branch->body->parent_block = p_block;
  2061. p_block->sub_blocks.push_back(branch->body);
  2062. current_block = branch->body;
  2063. branch->patterns.push_back(_parse_pattern(p_static));
  2064. if (!branch->patterns[0]) {
  2065. break;
  2066. }
  2067. bool has_binding = branch->patterns[0]->pt_type == PatternNode::PT_BIND;
  2068. bool catch_all = has_binding || branch->patterns[0]->pt_type == PatternNode::PT_WILDCARD;
  2069. #ifdef DEBUG_ENABLED
  2070. // Branches after a wildcard or binding are unreachable
  2071. if (catch_all_appeared && !current_function->has_unreachable_code) {
  2072. _add_warning(GDScriptWarning::UNREACHABLE_CODE, -1, current_function->name.operator String());
  2073. current_function->has_unreachable_code = true;
  2074. }
  2075. #endif
  2076. while (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  2077. tokenizer->advance();
  2078. branch->patterns.push_back(_parse_pattern(p_static));
  2079. if (!branch->patterns[branch->patterns.size() - 1]) {
  2080. return;
  2081. }
  2082. PatternNode::PatternType pt = branch->patterns[branch->patterns.size() - 1]->pt_type;
  2083. if (pt == PatternNode::PT_BIND) {
  2084. _set_error("Cannot use bindings with multipattern.");
  2085. return;
  2086. }
  2087. catch_all = catch_all || pt == PatternNode::PT_WILDCARD;
  2088. }
  2089. catch_all_appeared = catch_all_appeared || catch_all;
  2090. if (!_enter_indent_block()) {
  2091. _set_error("Expected block in pattern branch");
  2092. return;
  2093. }
  2094. _parse_block(branch->body, p_static);
  2095. current_block = p_block;
  2096. if (!branch->body->has_return) {
  2097. p_block->has_return = false;
  2098. }
  2099. p_branches.push_back(branch);
  2100. }
  2101. // Even if all branches return, there is possibility of default fallthrough
  2102. if (!catch_all_appeared) {
  2103. p_block->has_return = false;
  2104. }
  2105. }
  2106. void GDScriptParser::_generate_pattern(PatternNode *p_pattern, Node *p_node_to_match, Node *&p_resulting_node, Map<StringName, Node *> &p_bindings) {
  2107. const DataType &to_match_type = p_node_to_match->get_datatype();
  2108. switch (p_pattern->pt_type) {
  2109. case PatternNode::PT_CONSTANT: {
  2110. DataType pattern_type = _reduce_node_type(p_pattern->constant);
  2111. if (error_set) {
  2112. return;
  2113. }
  2114. OperatorNode *type_comp = nullptr;
  2115. // static type check if possible
  2116. if (pattern_type.has_type && to_match_type.has_type) {
  2117. if (!_is_type_compatible(to_match_type, pattern_type) && !_is_type_compatible(pattern_type, to_match_type)) {
  2118. _set_error("The pattern type (" + pattern_type.to_string() + ") isn't compatible with the type of the value to match (" + to_match_type.to_string() + ").",
  2119. p_pattern->line);
  2120. return;
  2121. }
  2122. } else {
  2123. // runtime typecheck
  2124. BuiltInFunctionNode *typeof_node = alloc_node<BuiltInFunctionNode>();
  2125. typeof_node->function = GDScriptFunctions::TYPE_OF;
  2126. OperatorNode *typeof_match_value = alloc_node<OperatorNode>();
  2127. typeof_match_value->op = OperatorNode::OP_CALL;
  2128. typeof_match_value->arguments.push_back(typeof_node);
  2129. typeof_match_value->arguments.push_back(p_node_to_match);
  2130. OperatorNode *typeof_pattern_value = alloc_node<OperatorNode>();
  2131. typeof_pattern_value->op = OperatorNode::OP_CALL;
  2132. typeof_pattern_value->arguments.push_back(typeof_node);
  2133. typeof_pattern_value->arguments.push_back(p_pattern->constant);
  2134. type_comp = alloc_node<OperatorNode>();
  2135. type_comp->op = OperatorNode::OP_EQUAL;
  2136. type_comp->arguments.push_back(typeof_match_value);
  2137. type_comp->arguments.push_back(typeof_pattern_value);
  2138. }
  2139. // compare the actual values
  2140. OperatorNode *value_comp = alloc_node<OperatorNode>();
  2141. value_comp->op = OperatorNode::OP_EQUAL;
  2142. value_comp->arguments.push_back(p_pattern->constant);
  2143. value_comp->arguments.push_back(p_node_to_match);
  2144. if (type_comp) {
  2145. OperatorNode *full_comparison = alloc_node<OperatorNode>();
  2146. full_comparison->op = OperatorNode::OP_AND;
  2147. full_comparison->arguments.push_back(type_comp);
  2148. full_comparison->arguments.push_back(value_comp);
  2149. p_resulting_node = full_comparison;
  2150. } else {
  2151. p_resulting_node = value_comp;
  2152. }
  2153. } break;
  2154. case PatternNode::PT_BIND: {
  2155. p_bindings[p_pattern->bind] = p_node_to_match;
  2156. // a bind always matches
  2157. ConstantNode *true_value = alloc_node<ConstantNode>();
  2158. true_value->value = Variant(true);
  2159. p_resulting_node = true_value;
  2160. } break;
  2161. case PatternNode::PT_ARRAY: {
  2162. bool open_ended = false;
  2163. if (p_pattern->array.size() > 0) {
  2164. if (p_pattern->array[p_pattern->array.size() - 1]->pt_type == PatternNode::PT_IGNORE_REST) {
  2165. open_ended = true;
  2166. }
  2167. }
  2168. // typeof(value_to_match) == TYPE_ARRAY && value_to_match.size() >= length
  2169. // typeof(value_to_match) == TYPE_ARRAY && value_to_match.size() == length
  2170. {
  2171. OperatorNode *type_comp = nullptr;
  2172. // static type check if possible
  2173. if (to_match_type.has_type) {
  2174. // must be an array
  2175. if (to_match_type.kind != DataType::BUILTIN || to_match_type.builtin_type != Variant::ARRAY) {
  2176. _set_error("Cannot match an array pattern with a non-array expression.", p_pattern->line);
  2177. return;
  2178. }
  2179. } else {
  2180. // runtime typecheck
  2181. BuiltInFunctionNode *typeof_node = alloc_node<BuiltInFunctionNode>();
  2182. typeof_node->function = GDScriptFunctions::TYPE_OF;
  2183. OperatorNode *typeof_match_value = alloc_node<OperatorNode>();
  2184. typeof_match_value->op = OperatorNode::OP_CALL;
  2185. typeof_match_value->arguments.push_back(typeof_node);
  2186. typeof_match_value->arguments.push_back(p_node_to_match);
  2187. IdentifierNode *typeof_array = alloc_node<IdentifierNode>();
  2188. typeof_array->name = "TYPE_ARRAY";
  2189. type_comp = alloc_node<OperatorNode>();
  2190. type_comp->op = OperatorNode::OP_EQUAL;
  2191. type_comp->arguments.push_back(typeof_match_value);
  2192. type_comp->arguments.push_back(typeof_array);
  2193. }
  2194. // size
  2195. ConstantNode *length = alloc_node<ConstantNode>();
  2196. length->value = Variant(open_ended ? p_pattern->array.size() - 1 : p_pattern->array.size());
  2197. OperatorNode *call = alloc_node<OperatorNode>();
  2198. call->op = OperatorNode::OP_CALL;
  2199. call->arguments.push_back(p_node_to_match);
  2200. IdentifierNode *size = alloc_node<IdentifierNode>();
  2201. size->name = "size";
  2202. call->arguments.push_back(size);
  2203. OperatorNode *length_comparison = alloc_node<OperatorNode>();
  2204. length_comparison->op = open_ended ? OperatorNode::OP_GREATER_EQUAL : OperatorNode::OP_EQUAL;
  2205. length_comparison->arguments.push_back(call);
  2206. length_comparison->arguments.push_back(length);
  2207. if (type_comp) {
  2208. OperatorNode *type_and_length_comparison = alloc_node<OperatorNode>();
  2209. type_and_length_comparison->op = OperatorNode::OP_AND;
  2210. type_and_length_comparison->arguments.push_back(type_comp);
  2211. type_and_length_comparison->arguments.push_back(length_comparison);
  2212. p_resulting_node = type_and_length_comparison;
  2213. } else {
  2214. p_resulting_node = length_comparison;
  2215. }
  2216. }
  2217. for (int i = 0; i < p_pattern->array.size(); i++) {
  2218. PatternNode *pattern = p_pattern->array[i];
  2219. Node *condition = nullptr;
  2220. ConstantNode *index = alloc_node<ConstantNode>();
  2221. index->value = Variant(i);
  2222. OperatorNode *indexed_value = alloc_node<OperatorNode>();
  2223. indexed_value->op = OperatorNode::OP_INDEX;
  2224. indexed_value->arguments.push_back(p_node_to_match);
  2225. indexed_value->arguments.push_back(index);
  2226. _generate_pattern(pattern, indexed_value, condition, p_bindings);
  2227. // concatenate all the patterns with &&
  2228. OperatorNode *and_node = alloc_node<OperatorNode>();
  2229. and_node->op = OperatorNode::OP_AND;
  2230. and_node->arguments.push_back(p_resulting_node);
  2231. and_node->arguments.push_back(condition);
  2232. p_resulting_node = and_node;
  2233. }
  2234. } break;
  2235. case PatternNode::PT_DICTIONARY: {
  2236. bool open_ended = false;
  2237. if (p_pattern->array.size() > 0) {
  2238. open_ended = true;
  2239. }
  2240. // typeof(value_to_match) == TYPE_DICTIONARY && value_to_match.size() >= length
  2241. // typeof(value_to_match) == TYPE_DICTIONARY && value_to_match.size() == length
  2242. {
  2243. OperatorNode *type_comp = nullptr;
  2244. // static type check if possible
  2245. if (to_match_type.has_type) {
  2246. // must be an dictionary
  2247. if (to_match_type.kind != DataType::BUILTIN || to_match_type.builtin_type != Variant::DICTIONARY) {
  2248. _set_error("Cannot match an dictionary pattern with a non-dictionary expression.", p_pattern->line);
  2249. return;
  2250. }
  2251. } else {
  2252. // runtime typecheck
  2253. BuiltInFunctionNode *typeof_node = alloc_node<BuiltInFunctionNode>();
  2254. typeof_node->function = GDScriptFunctions::TYPE_OF;
  2255. OperatorNode *typeof_match_value = alloc_node<OperatorNode>();
  2256. typeof_match_value->op = OperatorNode::OP_CALL;
  2257. typeof_match_value->arguments.push_back(typeof_node);
  2258. typeof_match_value->arguments.push_back(p_node_to_match);
  2259. IdentifierNode *typeof_dictionary = alloc_node<IdentifierNode>();
  2260. typeof_dictionary->name = "TYPE_DICTIONARY";
  2261. type_comp = alloc_node<OperatorNode>();
  2262. type_comp->op = OperatorNode::OP_EQUAL;
  2263. type_comp->arguments.push_back(typeof_match_value);
  2264. type_comp->arguments.push_back(typeof_dictionary);
  2265. }
  2266. // size
  2267. ConstantNode *length = alloc_node<ConstantNode>();
  2268. length->value = Variant(open_ended ? p_pattern->dictionary.size() - 1 : p_pattern->dictionary.size());
  2269. OperatorNode *call = alloc_node<OperatorNode>();
  2270. call->op = OperatorNode::OP_CALL;
  2271. call->arguments.push_back(p_node_to_match);
  2272. IdentifierNode *size = alloc_node<IdentifierNode>();
  2273. size->name = "size";
  2274. call->arguments.push_back(size);
  2275. OperatorNode *length_comparison = alloc_node<OperatorNode>();
  2276. length_comparison->op = open_ended ? OperatorNode::OP_GREATER_EQUAL : OperatorNode::OP_EQUAL;
  2277. length_comparison->arguments.push_back(call);
  2278. length_comparison->arguments.push_back(length);
  2279. if (type_comp) {
  2280. OperatorNode *type_and_length_comparison = alloc_node<OperatorNode>();
  2281. type_and_length_comparison->op = OperatorNode::OP_AND;
  2282. type_and_length_comparison->arguments.push_back(type_comp);
  2283. type_and_length_comparison->arguments.push_back(length_comparison);
  2284. p_resulting_node = type_and_length_comparison;
  2285. } else {
  2286. p_resulting_node = length_comparison;
  2287. }
  2288. }
  2289. for (Map<ConstantNode *, PatternNode *>::Element *e = p_pattern->dictionary.front(); e; e = e->next()) {
  2290. Node *condition = nullptr;
  2291. // check for has, then for pattern
  2292. IdentifierNode *has = alloc_node<IdentifierNode>();
  2293. has->name = "has";
  2294. OperatorNode *has_call = alloc_node<OperatorNode>();
  2295. has_call->op = OperatorNode::OP_CALL;
  2296. has_call->arguments.push_back(p_node_to_match);
  2297. has_call->arguments.push_back(has);
  2298. has_call->arguments.push_back(e->key());
  2299. if (e->value()) {
  2300. OperatorNode *indexed_value = alloc_node<OperatorNode>();
  2301. indexed_value->op = OperatorNode::OP_INDEX;
  2302. indexed_value->arguments.push_back(p_node_to_match);
  2303. indexed_value->arguments.push_back(e->key());
  2304. _generate_pattern(e->value(), indexed_value, condition, p_bindings);
  2305. OperatorNode *has_and_pattern = alloc_node<OperatorNode>();
  2306. has_and_pattern->op = OperatorNode::OP_AND;
  2307. has_and_pattern->arguments.push_back(has_call);
  2308. has_and_pattern->arguments.push_back(condition);
  2309. condition = has_and_pattern;
  2310. } else {
  2311. condition = has_call;
  2312. }
  2313. // concatenate all the patterns with &&
  2314. OperatorNode *and_node = alloc_node<OperatorNode>();
  2315. and_node->op = OperatorNode::OP_AND;
  2316. and_node->arguments.push_back(p_resulting_node);
  2317. and_node->arguments.push_back(condition);
  2318. p_resulting_node = and_node;
  2319. }
  2320. } break;
  2321. case PatternNode::PT_IGNORE_REST:
  2322. case PatternNode::PT_WILDCARD: {
  2323. // simply generate a `true`
  2324. ConstantNode *true_value = alloc_node<ConstantNode>();
  2325. true_value->value = Variant(true);
  2326. p_resulting_node = true_value;
  2327. } break;
  2328. default: {
  2329. } break;
  2330. }
  2331. }
  2332. void GDScriptParser::_transform_match_statment(MatchNode *p_match_statement) {
  2333. IdentifierNode *id = alloc_node<IdentifierNode>();
  2334. id->name = "#match_value";
  2335. id->line = p_match_statement->line;
  2336. id->datatype = _reduce_node_type(p_match_statement->val_to_match);
  2337. if (id->datatype.has_type) {
  2338. _mark_line_as_safe(id->line);
  2339. } else {
  2340. _mark_line_as_unsafe(id->line);
  2341. }
  2342. if (error_set) {
  2343. return;
  2344. }
  2345. for (int i = 0; i < p_match_statement->branches.size(); i++) {
  2346. PatternBranchNode *branch = p_match_statement->branches[i];
  2347. MatchNode::CompiledPatternBranch compiled_branch;
  2348. compiled_branch.compiled_pattern = nullptr;
  2349. Map<StringName, Node *> binding;
  2350. for (int j = 0; j < branch->patterns.size(); j++) {
  2351. PatternNode *pattern = branch->patterns[j];
  2352. _mark_line_as_safe(pattern->line);
  2353. Map<StringName, Node *> bindings;
  2354. Node *resulting_node = nullptr;
  2355. _generate_pattern(pattern, id, resulting_node, bindings);
  2356. if (!resulting_node) {
  2357. return;
  2358. }
  2359. if (!binding.empty() && !bindings.empty()) {
  2360. _set_error("Multipatterns can't contain bindings");
  2361. return;
  2362. } else {
  2363. binding = bindings;
  2364. }
  2365. // Result is always a boolean
  2366. DataType resulting_node_type;
  2367. resulting_node_type.has_type = true;
  2368. resulting_node_type.is_constant = true;
  2369. resulting_node_type.kind = DataType::BUILTIN;
  2370. resulting_node_type.builtin_type = Variant::BOOL;
  2371. resulting_node->set_datatype(resulting_node_type);
  2372. if (compiled_branch.compiled_pattern) {
  2373. OperatorNode *or_node = alloc_node<OperatorNode>();
  2374. or_node->op = OperatorNode::OP_OR;
  2375. or_node->arguments.push_back(compiled_branch.compiled_pattern);
  2376. or_node->arguments.push_back(resulting_node);
  2377. compiled_branch.compiled_pattern = or_node;
  2378. } else {
  2379. // single pattern | first one
  2380. compiled_branch.compiled_pattern = resulting_node;
  2381. }
  2382. }
  2383. // prepare the body ...hehe
  2384. for (Map<StringName, Node *>::Element *e = binding.front(); e; e = e->next()) {
  2385. if (!branch->body->variables.has(e->key())) {
  2386. _set_error("Parser bug: missing pattern bind variable.", branch->line);
  2387. ERR_FAIL();
  2388. }
  2389. LocalVarNode *local_var = branch->body->variables[e->key()];
  2390. local_var->assign = e->value();
  2391. local_var->set_datatype(local_var->assign->get_datatype());
  2392. local_var->assignments++;
  2393. IdentifierNode *id2 = alloc_node<IdentifierNode>();
  2394. id2->name = local_var->name;
  2395. id2->datatype = local_var->datatype;
  2396. id2->declared_block = branch->body;
  2397. id2->set_datatype(local_var->assign->get_datatype());
  2398. OperatorNode *op = alloc_node<OperatorNode>();
  2399. op->op = OperatorNode::OP_ASSIGN;
  2400. op->arguments.push_back(id2);
  2401. op->arguments.push_back(local_var->assign);
  2402. local_var->assign_op = op;
  2403. branch->body->statements.insert(0, op);
  2404. branch->body->statements.insert(0, local_var);
  2405. }
  2406. compiled_branch.body = branch->body;
  2407. p_match_statement->compiled_pattern_branches.push_back(compiled_branch);
  2408. }
  2409. }
  2410. void GDScriptParser::_parse_block(BlockNode *p_block, bool p_static) {
  2411. IndentLevel current_level = indent_level.back()->get();
  2412. #ifdef DEBUG_ENABLED
  2413. pending_newline = -1; // reset for the new block
  2414. NewLineNode *nl = alloc_node<NewLineNode>();
  2415. nl->line = tokenizer->get_token_line();
  2416. p_block->statements.push_back(nl);
  2417. #endif
  2418. bool is_first_line = true;
  2419. while (true) {
  2420. if (!is_first_line && indent_level.back()->prev() && indent_level.back()->prev()->get().indent == current_level.indent) {
  2421. if (indent_level.back()->prev()->get().is_mixed(current_level)) {
  2422. _set_error("Mixed tabs and spaces in indentation.");
  2423. return;
  2424. }
  2425. // pythonic single-line expression, don't parse future lines
  2426. indent_level.pop_back();
  2427. p_block->end_line = tokenizer->get_token_line();
  2428. return;
  2429. }
  2430. is_first_line = false;
  2431. GDScriptTokenizer::Token token = tokenizer->get_token();
  2432. if (error_set) {
  2433. return;
  2434. }
  2435. if (current_level.indent > indent_level.back()->get().indent) {
  2436. p_block->end_line = tokenizer->get_token_line();
  2437. return; //go back a level
  2438. }
  2439. if (pending_newline != -1) {
  2440. NewLineNode *nl2 = alloc_node<NewLineNode>();
  2441. nl2->line = pending_newline;
  2442. p_block->statements.push_back(nl2);
  2443. pending_newline = -1;
  2444. }
  2445. #ifdef DEBUG_ENABLED
  2446. switch (token) {
  2447. case GDScriptTokenizer::TK_EOF:
  2448. case GDScriptTokenizer::TK_ERROR:
  2449. case GDScriptTokenizer::TK_NEWLINE:
  2450. case GDScriptTokenizer::TK_CF_PASS: {
  2451. // will check later
  2452. } break;
  2453. default: {
  2454. if (p_block->has_return && !current_function->has_unreachable_code) {
  2455. _add_warning(GDScriptWarning::UNREACHABLE_CODE, -1, current_function->name.operator String());
  2456. current_function->has_unreachable_code = true;
  2457. }
  2458. } break;
  2459. }
  2460. #endif // DEBUG_ENABLED
  2461. switch (token) {
  2462. case GDScriptTokenizer::TK_EOF:
  2463. p_block->end_line = tokenizer->get_token_line();
  2464. case GDScriptTokenizer::TK_ERROR: {
  2465. return; //go back
  2466. //end of file!
  2467. } break;
  2468. case GDScriptTokenizer::TK_NEWLINE: {
  2469. int line = tokenizer->get_token_line();
  2470. if (!_parse_newline()) {
  2471. if (!error_set) {
  2472. p_block->end_line = tokenizer->get_token_line();
  2473. pending_newline = p_block->end_line;
  2474. }
  2475. return;
  2476. }
  2477. _mark_line_as_safe(line);
  2478. NewLineNode *nl2 = alloc_node<NewLineNode>();
  2479. nl2->line = line;
  2480. p_block->statements.push_back(nl2);
  2481. } break;
  2482. case GDScriptTokenizer::TK_CF_PASS: {
  2483. if (tokenizer->get_token(1) != GDScriptTokenizer::TK_SEMICOLON && tokenizer->get_token(1) != GDScriptTokenizer::TK_NEWLINE && tokenizer->get_token(1) != GDScriptTokenizer::TK_EOF) {
  2484. _set_error("Expected \";\" or a line break.");
  2485. return;
  2486. }
  2487. _mark_line_as_safe(tokenizer->get_token_line());
  2488. tokenizer->advance();
  2489. if (tokenizer->get_token() == GDScriptTokenizer::TK_SEMICOLON) {
  2490. // Ignore semicolon after 'pass'.
  2491. tokenizer->advance();
  2492. }
  2493. } break;
  2494. case GDScriptTokenizer::TK_PR_VAR: {
  2495. // Variable declaration and (eventual) initialization.
  2496. tokenizer->advance();
  2497. int var_line = tokenizer->get_token_line();
  2498. if (!tokenizer->is_token_literal(0, true)) {
  2499. _set_error("Expected an identifier for the local variable name.");
  2500. return;
  2501. }
  2502. StringName n = tokenizer->get_token_literal();
  2503. if (current_function) {
  2504. for (int i = 0; i < current_function->arguments.size(); i++) {
  2505. if (n == current_function->arguments[i]) {
  2506. _set_error("Variable \"" + String(n) + "\" already defined in the scope (at line " + itos(current_function->line) + ").");
  2507. return;
  2508. }
  2509. }
  2510. }
  2511. BlockNode *check_block = p_block;
  2512. while (check_block) {
  2513. if (check_block->variables.has(n)) {
  2514. _set_error("Variable \"" + String(n) + "\" already defined in the scope (at line " + itos(check_block->variables[n]->line) + ").");
  2515. return;
  2516. }
  2517. check_block = check_block->parent_block;
  2518. }
  2519. tokenizer->advance();
  2520. //must know when the local variable is declared
  2521. LocalVarNode *lv = alloc_node<LocalVarNode>();
  2522. lv->name = n;
  2523. lv->line = var_line;
  2524. p_block->statements.push_back(lv);
  2525. Node *assigned = nullptr;
  2526. if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON) {
  2527. if (tokenizer->get_token(1) == GDScriptTokenizer::TK_OP_ASSIGN) {
  2528. lv->datatype = DataType();
  2529. lv->datatype.infer_type = true;
  2530. tokenizer->advance();
  2531. } else if (!_parse_type(lv->datatype)) {
  2532. _set_error("Expected a type for the variable.");
  2533. return;
  2534. }
  2535. }
  2536. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_ASSIGN) {
  2537. tokenizer->advance();
  2538. Node *subexpr = _parse_and_reduce_expression(p_block, p_static);
  2539. if (!subexpr) {
  2540. if (_recover_from_completion()) {
  2541. break;
  2542. }
  2543. return;
  2544. }
  2545. lv->assignments++;
  2546. assigned = subexpr;
  2547. } else {
  2548. assigned = _get_default_value_for_type(lv->datatype, var_line);
  2549. }
  2550. //must be added later, to avoid self-referencing.
  2551. p_block->variables.insert(n, lv);
  2552. IdentifierNode *id = alloc_node<IdentifierNode>();
  2553. id->name = n;
  2554. id->declared_block = p_block;
  2555. id->line = var_line;
  2556. OperatorNode *op = alloc_node<OperatorNode>();
  2557. op->op = OperatorNode::OP_ASSIGN;
  2558. op->arguments.push_back(id);
  2559. op->arguments.push_back(assigned);
  2560. op->line = var_line;
  2561. p_block->statements.push_back(op);
  2562. lv->assign_op = op;
  2563. lv->assign = assigned;
  2564. if (!_end_statement()) {
  2565. _set_end_statement_error("var");
  2566. return;
  2567. }
  2568. } break;
  2569. case GDScriptTokenizer::TK_CF_IF: {
  2570. tokenizer->advance();
  2571. Node *condition = _parse_and_reduce_expression(p_block, p_static);
  2572. if (!condition) {
  2573. if (_recover_from_completion()) {
  2574. break;
  2575. }
  2576. return;
  2577. }
  2578. ControlFlowNode *cf_if = alloc_node<ControlFlowNode>();
  2579. cf_if->cf_type = ControlFlowNode::CF_IF;
  2580. cf_if->arguments.push_back(condition);
  2581. cf_if->body = alloc_node<BlockNode>();
  2582. cf_if->body->parent_block = p_block;
  2583. cf_if->body->if_condition = condition; //helps code completion
  2584. p_block->sub_blocks.push_back(cf_if->body);
  2585. if (!_enter_indent_block(cf_if->body)) {
  2586. _set_error("Expected an indented block after \"if\".");
  2587. p_block->end_line = tokenizer->get_token_line();
  2588. return;
  2589. }
  2590. current_block = cf_if->body;
  2591. _parse_block(cf_if->body, p_static);
  2592. current_block = p_block;
  2593. if (error_set) {
  2594. return;
  2595. }
  2596. p_block->statements.push_back(cf_if);
  2597. bool all_have_return = cf_if->body->has_return;
  2598. bool have_else = false;
  2599. while (true) {
  2600. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE && _parse_newline()) {
  2601. ;
  2602. }
  2603. if (indent_level.back()->get().indent < current_level.indent) { //not at current indent level
  2604. p_block->end_line = tokenizer->get_token_line();
  2605. return;
  2606. }
  2607. if (tokenizer->get_token() == GDScriptTokenizer::TK_CF_ELIF) {
  2608. if (indent_level.back()->get().indent > current_level.indent) {
  2609. _set_error("Invalid indentation.");
  2610. return;
  2611. }
  2612. tokenizer->advance();
  2613. cf_if->body_else = alloc_node<BlockNode>();
  2614. cf_if->body_else->parent_block = p_block;
  2615. p_block->sub_blocks.push_back(cf_if->body_else);
  2616. ControlFlowNode *cf_else = alloc_node<ControlFlowNode>();
  2617. cf_else->cf_type = ControlFlowNode::CF_IF;
  2618. //condition
  2619. Node *condition2 = _parse_and_reduce_expression(p_block, p_static);
  2620. if (!condition2) {
  2621. if (_recover_from_completion()) {
  2622. break;
  2623. }
  2624. return;
  2625. }
  2626. cf_else->arguments.push_back(condition2);
  2627. cf_else->cf_type = ControlFlowNode::CF_IF;
  2628. cf_if->body_else->statements.push_back(cf_else);
  2629. cf_if = cf_else;
  2630. cf_if->body = alloc_node<BlockNode>();
  2631. cf_if->body->parent_block = p_block;
  2632. p_block->sub_blocks.push_back(cf_if->body);
  2633. if (!_enter_indent_block(cf_if->body)) {
  2634. _set_error("Expected an indented block after \"elif\".");
  2635. p_block->end_line = tokenizer->get_token_line();
  2636. return;
  2637. }
  2638. current_block = cf_else->body;
  2639. _parse_block(cf_else->body, p_static);
  2640. current_block = p_block;
  2641. if (error_set) {
  2642. return;
  2643. }
  2644. all_have_return = all_have_return && cf_else->body->has_return;
  2645. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CF_ELSE) {
  2646. if (indent_level.back()->get().indent > current_level.indent) {
  2647. _set_error("Invalid indentation.");
  2648. return;
  2649. }
  2650. tokenizer->advance();
  2651. cf_if->body_else = alloc_node<BlockNode>();
  2652. cf_if->body_else->parent_block = p_block;
  2653. p_block->sub_blocks.push_back(cf_if->body_else);
  2654. if (!_enter_indent_block(cf_if->body_else)) {
  2655. _set_error("Expected an indented block after \"else\".");
  2656. p_block->end_line = tokenizer->get_token_line();
  2657. return;
  2658. }
  2659. current_block = cf_if->body_else;
  2660. _parse_block(cf_if->body_else, p_static);
  2661. current_block = p_block;
  2662. if (error_set) {
  2663. return;
  2664. }
  2665. all_have_return = all_have_return && cf_if->body_else->has_return;
  2666. have_else = true;
  2667. break; //after else, exit
  2668. } else {
  2669. break;
  2670. }
  2671. }
  2672. cf_if->body->has_return = all_have_return;
  2673. // If there's no else block, path out of the if might not have a return
  2674. p_block->has_return = all_have_return && have_else;
  2675. } break;
  2676. case GDScriptTokenizer::TK_CF_WHILE: {
  2677. tokenizer->advance();
  2678. Node *condition2 = _parse_and_reduce_expression(p_block, p_static);
  2679. if (!condition2) {
  2680. if (_recover_from_completion()) {
  2681. break;
  2682. }
  2683. return;
  2684. }
  2685. ControlFlowNode *cf_while = alloc_node<ControlFlowNode>();
  2686. cf_while->cf_type = ControlFlowNode::CF_WHILE;
  2687. cf_while->arguments.push_back(condition2);
  2688. cf_while->body = alloc_node<BlockNode>();
  2689. cf_while->body->parent_block = p_block;
  2690. cf_while->body->can_break = true;
  2691. cf_while->body->can_continue = true;
  2692. p_block->sub_blocks.push_back(cf_while->body);
  2693. if (!_enter_indent_block(cf_while->body)) {
  2694. _set_error("Expected an indented block after \"while\".");
  2695. p_block->end_line = tokenizer->get_token_line();
  2696. return;
  2697. }
  2698. current_block = cf_while->body;
  2699. _parse_block(cf_while->body, p_static);
  2700. current_block = p_block;
  2701. if (error_set) {
  2702. return;
  2703. }
  2704. p_block->statements.push_back(cf_while);
  2705. } break;
  2706. case GDScriptTokenizer::TK_CF_FOR: {
  2707. tokenizer->advance();
  2708. if (!tokenizer->is_token_literal(0, true)) {
  2709. _set_error("Identifier expected after \"for\".");
  2710. }
  2711. IdentifierNode *id = alloc_node<IdentifierNode>();
  2712. id->name = tokenizer->get_token_identifier();
  2713. #ifdef DEBUG_ENABLED
  2714. for (int j = 0; j < current_class->variables.size(); j++) {
  2715. if (current_class->variables[j].identifier == id->name) {
  2716. _add_warning(GDScriptWarning::SHADOWED_VARIABLE, id->line, id->name, itos(current_class->variables[j].line));
  2717. }
  2718. }
  2719. #endif // DEBUG_ENABLED
  2720. BlockNode *check_block = p_block;
  2721. while (check_block) {
  2722. if (check_block->variables.has(id->name)) {
  2723. _set_error("Variable \"" + String(id->name) + "\" already defined in the scope (at line " + itos(check_block->variables[id->name]->line) + ").");
  2724. return;
  2725. }
  2726. check_block = check_block->parent_block;
  2727. }
  2728. tokenizer->advance();
  2729. if (tokenizer->get_token() != GDScriptTokenizer::TK_OP_IN) {
  2730. _set_error("\"in\" expected after identifier.");
  2731. return;
  2732. }
  2733. tokenizer->advance();
  2734. Node *container = _parse_and_reduce_expression(p_block, p_static);
  2735. if (!container) {
  2736. if (_recover_from_completion()) {
  2737. break;
  2738. }
  2739. return;
  2740. }
  2741. DataType iter_type;
  2742. if (container->type == Node::TYPE_OPERATOR) {
  2743. OperatorNode *op = static_cast<OperatorNode *>(container);
  2744. if (op->op == OperatorNode::OP_CALL && op->arguments[0]->type == Node::TYPE_BUILT_IN_FUNCTION && static_cast<BuiltInFunctionNode *>(op->arguments[0])->function == GDScriptFunctions::GEN_RANGE) {
  2745. //iterating a range, so see if range() can be optimized without allocating memory, by replacing it by vectors (which can work as iterable too!)
  2746. Vector<Node *> args;
  2747. Vector<double> constants;
  2748. bool constant = true;
  2749. for (int i = 1; i < op->arguments.size(); i++) {
  2750. args.push_back(op->arguments[i]);
  2751. if (op->arguments[i]->type == Node::TYPE_CONSTANT) {
  2752. ConstantNode *c = static_cast<ConstantNode *>(op->arguments[i]);
  2753. if (c->value.get_type() == Variant::REAL || c->value.get_type() == Variant::INT) {
  2754. constants.push_back(c->value);
  2755. } else {
  2756. constant = false;
  2757. }
  2758. } else {
  2759. constant = false;
  2760. }
  2761. }
  2762. if (args.size() > 0 && args.size() < 4) {
  2763. if (constant) {
  2764. ConstantNode *cn = alloc_node<ConstantNode>();
  2765. switch (args.size()) {
  2766. case 1:
  2767. cn->value = (int)constants[0];
  2768. break;
  2769. case 2:
  2770. cn->value = Vector2(constants[0], constants[1]);
  2771. break;
  2772. case 3:
  2773. cn->value = Vector3(constants[0], constants[1], constants[2]);
  2774. break;
  2775. }
  2776. cn->datatype = _type_from_variant(cn->value);
  2777. container = cn;
  2778. } else {
  2779. OperatorNode *on = alloc_node<OperatorNode>();
  2780. on->op = OperatorNode::OP_CALL;
  2781. TypeNode *tn = alloc_node<TypeNode>();
  2782. on->arguments.push_back(tn);
  2783. switch (args.size()) {
  2784. case 1:
  2785. tn->vtype = Variant::INT;
  2786. break;
  2787. case 2:
  2788. tn->vtype = Variant::VECTOR2;
  2789. break;
  2790. case 3:
  2791. tn->vtype = Variant::VECTOR3;
  2792. break;
  2793. }
  2794. for (int i = 0; i < args.size(); i++) {
  2795. on->arguments.push_back(args[i]);
  2796. }
  2797. container = on;
  2798. }
  2799. }
  2800. iter_type.has_type = true;
  2801. iter_type.kind = DataType::BUILTIN;
  2802. iter_type.builtin_type = Variant::INT;
  2803. }
  2804. }
  2805. ControlFlowNode *cf_for = alloc_node<ControlFlowNode>();
  2806. cf_for->cf_type = ControlFlowNode::CF_FOR;
  2807. cf_for->arguments.push_back(id);
  2808. cf_for->arguments.push_back(container);
  2809. cf_for->body = alloc_node<BlockNode>();
  2810. cf_for->body->parent_block = p_block;
  2811. cf_for->body->can_break = true;
  2812. cf_for->body->can_continue = true;
  2813. p_block->sub_blocks.push_back(cf_for->body);
  2814. if (!_enter_indent_block(cf_for->body)) {
  2815. _set_error("Expected indented block after \"for\".");
  2816. p_block->end_line = tokenizer->get_token_line();
  2817. return;
  2818. }
  2819. current_block = cf_for->body;
  2820. // this is for checking variable for redefining
  2821. // inside this _parse_block
  2822. LocalVarNode *lv = alloc_node<LocalVarNode>();
  2823. lv->name = id->name;
  2824. lv->line = id->line;
  2825. lv->assignments++;
  2826. id->declared_block = cf_for->body;
  2827. lv->set_datatype(iter_type);
  2828. id->set_datatype(iter_type);
  2829. cf_for->body->variables.insert(id->name, lv);
  2830. _parse_block(cf_for->body, p_static);
  2831. current_block = p_block;
  2832. if (error_set) {
  2833. return;
  2834. }
  2835. p_block->statements.push_back(cf_for);
  2836. } break;
  2837. case GDScriptTokenizer::TK_CF_CONTINUE: {
  2838. BlockNode *upper_block = p_block;
  2839. bool is_continue_valid = false;
  2840. while (upper_block) {
  2841. if (upper_block->can_continue) {
  2842. is_continue_valid = true;
  2843. break;
  2844. }
  2845. upper_block = upper_block->parent_block;
  2846. }
  2847. if (!is_continue_valid) {
  2848. _set_error("Unexpected keyword \"continue\" outside a loop.");
  2849. return;
  2850. }
  2851. _mark_line_as_safe(tokenizer->get_token_line());
  2852. tokenizer->advance();
  2853. ControlFlowNode *cf_continue = alloc_node<ControlFlowNode>();
  2854. cf_continue->cf_type = ControlFlowNode::CF_CONTINUE;
  2855. p_block->statements.push_back(cf_continue);
  2856. if (!_end_statement()) {
  2857. _set_end_statement_error("continue");
  2858. return;
  2859. }
  2860. } break;
  2861. case GDScriptTokenizer::TK_CF_BREAK: {
  2862. BlockNode *upper_block = p_block;
  2863. bool is_break_valid = false;
  2864. while (upper_block) {
  2865. if (upper_block->can_break) {
  2866. is_break_valid = true;
  2867. break;
  2868. }
  2869. upper_block = upper_block->parent_block;
  2870. }
  2871. if (!is_break_valid) {
  2872. _set_error("Unexpected keyword \"break\" outside a loop.");
  2873. return;
  2874. }
  2875. _mark_line_as_safe(tokenizer->get_token_line());
  2876. tokenizer->advance();
  2877. ControlFlowNode *cf_break = alloc_node<ControlFlowNode>();
  2878. cf_break->cf_type = ControlFlowNode::CF_BREAK;
  2879. p_block->statements.push_back(cf_break);
  2880. if (!_end_statement()) {
  2881. _set_end_statement_error("break");
  2882. return;
  2883. }
  2884. } break;
  2885. case GDScriptTokenizer::TK_CF_RETURN: {
  2886. tokenizer->advance();
  2887. ControlFlowNode *cf_return = alloc_node<ControlFlowNode>();
  2888. cf_return->cf_type = ControlFlowNode::CF_RETURN;
  2889. cf_return->line = tokenizer->get_token_line(-1);
  2890. if (tokenizer->get_token() == GDScriptTokenizer::TK_SEMICOLON || tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE || tokenizer->get_token() == GDScriptTokenizer::TK_EOF) {
  2891. //expect end of statement
  2892. p_block->statements.push_back(cf_return);
  2893. if (!_end_statement()) {
  2894. return;
  2895. }
  2896. } else {
  2897. //expect expression
  2898. Node *retexpr = _parse_and_reduce_expression(p_block, p_static);
  2899. if (!retexpr) {
  2900. if (_recover_from_completion()) {
  2901. break;
  2902. }
  2903. return;
  2904. }
  2905. cf_return->arguments.push_back(retexpr);
  2906. p_block->statements.push_back(cf_return);
  2907. if (!_end_statement()) {
  2908. _set_end_statement_error("return");
  2909. return;
  2910. }
  2911. }
  2912. p_block->has_return = true;
  2913. } break;
  2914. case GDScriptTokenizer::TK_CF_MATCH: {
  2915. tokenizer->advance();
  2916. MatchNode *match_node = alloc_node<MatchNode>();
  2917. Node *val_to_match = _parse_and_reduce_expression(p_block, p_static);
  2918. if (!val_to_match) {
  2919. if (_recover_from_completion()) {
  2920. break;
  2921. }
  2922. return;
  2923. }
  2924. match_node->val_to_match = val_to_match;
  2925. if (!_enter_indent_block()) {
  2926. _set_error("Expected indented pattern matching block after \"match\".");
  2927. return;
  2928. }
  2929. BlockNode *compiled_branches = alloc_node<BlockNode>();
  2930. compiled_branches->parent_block = p_block;
  2931. compiled_branches->parent_class = p_block->parent_class;
  2932. compiled_branches->can_continue = true;
  2933. p_block->sub_blocks.push_back(compiled_branches);
  2934. _parse_pattern_block(compiled_branches, match_node->branches, p_static);
  2935. if (error_set) {
  2936. return;
  2937. }
  2938. ControlFlowNode *match_cf_node = alloc_node<ControlFlowNode>();
  2939. match_cf_node->cf_type = ControlFlowNode::CF_MATCH;
  2940. match_cf_node->match = match_node;
  2941. match_cf_node->body = compiled_branches;
  2942. p_block->has_return = p_block->has_return || compiled_branches->has_return;
  2943. p_block->statements.push_back(match_cf_node);
  2944. _end_statement();
  2945. } break;
  2946. case GDScriptTokenizer::TK_PR_ASSERT: {
  2947. tokenizer->advance();
  2948. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  2949. _set_error("Expected '(' after assert");
  2950. return;
  2951. }
  2952. int assert_line = tokenizer->get_token_line();
  2953. tokenizer->advance();
  2954. Vector<Node *> args;
  2955. const bool result = _parse_arguments(p_block, args, p_static);
  2956. if (!result) {
  2957. return;
  2958. }
  2959. if (args.empty() || args.size() > 2) {
  2960. _set_error("Wrong number of arguments, expected 1 or 2", assert_line);
  2961. return;
  2962. }
  2963. AssertNode *an = alloc_node<AssertNode>();
  2964. an->condition = _reduce_expression(args[0], p_static);
  2965. an->line = assert_line;
  2966. if (args.size() == 2) {
  2967. an->message = _reduce_expression(args[1], p_static);
  2968. } else {
  2969. ConstantNode *message_node = alloc_node<ConstantNode>();
  2970. message_node->value = String();
  2971. an->message = message_node;
  2972. }
  2973. p_block->statements.push_back(an);
  2974. if (!_end_statement()) {
  2975. _set_end_statement_error("assert");
  2976. return;
  2977. }
  2978. } break;
  2979. case GDScriptTokenizer::TK_PR_BREAKPOINT: {
  2980. tokenizer->advance();
  2981. BreakpointNode *bn = alloc_node<BreakpointNode>();
  2982. p_block->statements.push_back(bn);
  2983. if (!_end_statement()) {
  2984. _set_end_statement_error("breakpoint");
  2985. return;
  2986. }
  2987. } break;
  2988. default: {
  2989. Node *expression = _parse_and_reduce_expression(p_block, p_static, false, true);
  2990. if (!expression) {
  2991. if (_recover_from_completion()) {
  2992. break;
  2993. }
  2994. return;
  2995. }
  2996. p_block->statements.push_back(expression);
  2997. if (!_end_statement()) {
  2998. // Attempt to guess a better error message if the user "retypes" a variable
  2999. if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON && tokenizer->get_token(1) == GDScriptTokenizer::TK_OP_ASSIGN) {
  3000. _set_error("Unexpected ':=', use '=' instead. Expected end of statement after expression.");
  3001. } else {
  3002. _set_error(vformat("Expected end of statement after expression, got %s instead.", tokenizer->get_token_name(tokenizer->get_token())));
  3003. }
  3004. return;
  3005. }
  3006. } break;
  3007. }
  3008. }
  3009. }
  3010. bool GDScriptParser::_parse_newline() {
  3011. if (tokenizer->get_token(1) != GDScriptTokenizer::TK_EOF && tokenizer->get_token(1) != GDScriptTokenizer::TK_NEWLINE) {
  3012. IndentLevel current_level = indent_level.back()->get();
  3013. int indent = tokenizer->get_token_line_indent();
  3014. int tabs = tokenizer->get_token_line_tab_indent();
  3015. IndentLevel new_level(indent, tabs);
  3016. if (new_level.is_mixed(current_level)) {
  3017. _set_error("Mixed tabs and spaces in indentation.");
  3018. return false;
  3019. }
  3020. if (indent > current_level.indent) {
  3021. _set_error("Unexpected indentation.");
  3022. return false;
  3023. }
  3024. if (indent < current_level.indent) {
  3025. while (indent < current_level.indent) {
  3026. //exit block
  3027. if (indent_level.size() == 1) {
  3028. _set_error("Invalid indentation. Bug?");
  3029. return false;
  3030. }
  3031. indent_level.pop_back();
  3032. if (indent_level.back()->get().indent < indent) {
  3033. _set_error("Unindent does not match any outer indentation level.");
  3034. return false;
  3035. }
  3036. if (indent_level.back()->get().is_mixed(current_level)) {
  3037. _set_error("Mixed tabs and spaces in indentation.");
  3038. return false;
  3039. }
  3040. current_level = indent_level.back()->get();
  3041. }
  3042. tokenizer->advance();
  3043. return false;
  3044. }
  3045. }
  3046. tokenizer->advance();
  3047. return true;
  3048. }
  3049. void GDScriptParser::_parse_extends(ClassNode *p_class) {
  3050. if (p_class->extends_used) {
  3051. _set_error("\"extends\" can only be present once per script.");
  3052. return;
  3053. }
  3054. if (!p_class->constant_expressions.empty() || !p_class->subclasses.empty() || !p_class->functions.empty() || !p_class->variables.empty()) {
  3055. _set_error("\"extends\" must be used before anything else.");
  3056. return;
  3057. }
  3058. p_class->extends_used = true;
  3059. tokenizer->advance();
  3060. if (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_TYPE && tokenizer->get_token_type() == Variant::OBJECT) {
  3061. p_class->extends_class.push_back(Variant::get_type_name(Variant::OBJECT));
  3062. tokenizer->advance();
  3063. return;
  3064. }
  3065. // see if inheritance happens from a file
  3066. if (tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT) {
  3067. Variant constant = tokenizer->get_token_constant();
  3068. if (constant.get_type() != Variant::STRING) {
  3069. _set_error("\"extends\" constant must be a string.");
  3070. return;
  3071. }
  3072. p_class->extends_file = constant;
  3073. tokenizer->advance();
  3074. // Add parent script as a dependency
  3075. String parent = constant;
  3076. if (parent.is_rel_path()) {
  3077. parent = base_path.plus_file(parent).simplify_path();
  3078. }
  3079. dependencies.push_back(parent);
  3080. if (tokenizer->get_token() != GDScriptTokenizer::TK_PERIOD) {
  3081. return;
  3082. } else {
  3083. tokenizer->advance();
  3084. }
  3085. }
  3086. while (true) {
  3087. switch (tokenizer->get_token()) {
  3088. case GDScriptTokenizer::TK_IDENTIFIER: {
  3089. StringName identifier = tokenizer->get_token_identifier();
  3090. p_class->extends_class.push_back(identifier);
  3091. } break;
  3092. case GDScriptTokenizer::TK_CURSOR:
  3093. case GDScriptTokenizer::TK_PERIOD:
  3094. break;
  3095. default: {
  3096. _set_error("Invalid \"extends\" syntax, expected string constant (path) and/or identifier (parent class).");
  3097. return;
  3098. }
  3099. }
  3100. tokenizer->advance(1);
  3101. switch (tokenizer->get_token()) {
  3102. case GDScriptTokenizer::TK_IDENTIFIER:
  3103. case GDScriptTokenizer::TK_PERIOD:
  3104. continue;
  3105. case GDScriptTokenizer::TK_CURSOR:
  3106. completion_type = COMPLETION_EXTENDS;
  3107. completion_class = current_class;
  3108. completion_function = current_function;
  3109. completion_line = tokenizer->get_token_line();
  3110. completion_block = current_block;
  3111. completion_ident_is_call = false;
  3112. completion_found = true;
  3113. return;
  3114. default:
  3115. return;
  3116. }
  3117. }
  3118. }
  3119. void GDScriptParser::_parse_class(ClassNode *p_class) {
  3120. IndentLevel current_level = indent_level.back()->get();
  3121. while (true) {
  3122. GDScriptTokenizer::Token token = tokenizer->get_token();
  3123. if (error_set) {
  3124. return;
  3125. }
  3126. if (current_level.indent > indent_level.back()->get().indent) {
  3127. p_class->end_line = tokenizer->get_token_line();
  3128. return; //go back a level
  3129. }
  3130. switch (token) {
  3131. case GDScriptTokenizer::TK_CURSOR: {
  3132. tokenizer->advance();
  3133. } break;
  3134. case GDScriptTokenizer::TK_EOF:
  3135. p_class->end_line = tokenizer->get_token_line();
  3136. case GDScriptTokenizer::TK_ERROR: {
  3137. return; //go back
  3138. //end of file!
  3139. } break;
  3140. case GDScriptTokenizer::TK_NEWLINE: {
  3141. if (!_parse_newline()) {
  3142. if (!error_set) {
  3143. p_class->end_line = tokenizer->get_token_line();
  3144. }
  3145. return;
  3146. }
  3147. } break;
  3148. case GDScriptTokenizer::TK_PR_EXTENDS: {
  3149. _mark_line_as_safe(tokenizer->get_token_line());
  3150. _parse_extends(p_class);
  3151. if (error_set) {
  3152. return;
  3153. }
  3154. if (!_end_statement()) {
  3155. _set_end_statement_error("extends");
  3156. return;
  3157. }
  3158. } break;
  3159. case GDScriptTokenizer::TK_PR_CLASS_NAME: {
  3160. _mark_line_as_safe(tokenizer->get_token_line());
  3161. if (p_class->owner) {
  3162. _set_error("\"class_name\" is only valid for the main class namespace.");
  3163. return;
  3164. }
  3165. if (self_path.begins_with("res://") && self_path.find("::") != -1) {
  3166. _set_error("\"class_name\" isn't allowed in built-in scripts.");
  3167. return;
  3168. }
  3169. if (tokenizer->get_token(1) != GDScriptTokenizer::TK_IDENTIFIER) {
  3170. _set_error("\"class_name\" syntax: \"class_name <UniqueName>\"");
  3171. return;
  3172. }
  3173. if (p_class->classname_used) {
  3174. _set_error("\"class_name\" can only be present once per script.");
  3175. return;
  3176. }
  3177. p_class->classname_used = true;
  3178. p_class->name = tokenizer->get_token_identifier(1);
  3179. if (self_path != String() && ScriptServer::is_global_class(p_class->name) && ScriptServer::get_global_class_path(p_class->name) != self_path) {
  3180. _set_error("Unique global class \"" + p_class->name + "\" already exists at path: " + ScriptServer::get_global_class_path(p_class->name));
  3181. return;
  3182. }
  3183. if (ClassDB::class_exists(p_class->name)) {
  3184. _set_error("The class \"" + p_class->name + "\" shadows a native class.");
  3185. return;
  3186. }
  3187. if (p_class->classname_used && ProjectSettings::get_singleton()->has_setting("autoload/" + p_class->name)) {
  3188. const String autoload_path = ProjectSettings::get_singleton()->get_setting("autoload/" + p_class->name);
  3189. if (autoload_path.begins_with("*")) {
  3190. // It's a singleton, and not just a regular AutoLoad script.
  3191. _set_error("The class \"" + p_class->name + "\" conflicts with the AutoLoad singleton of the same name, and is therefore redundant. Remove the class_name declaration to fix this error.");
  3192. }
  3193. return;
  3194. }
  3195. tokenizer->advance(2);
  3196. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3197. tokenizer->advance();
  3198. if ((tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT && tokenizer->get_token_constant().get_type() == Variant::STRING)) {
  3199. #ifdef TOOLS_ENABLED
  3200. if (Engine::get_singleton()->is_editor_hint()) {
  3201. Variant constant = tokenizer->get_token_constant();
  3202. String icon_path = constant.operator String();
  3203. String abs_icon_path = icon_path.is_rel_path() ? self_path.get_base_dir().plus_file(icon_path).simplify_path() : icon_path;
  3204. if (!FileAccess::exists(abs_icon_path)) {
  3205. _set_error("No class icon found at: " + abs_icon_path);
  3206. return;
  3207. }
  3208. p_class->icon_path = icon_path;
  3209. }
  3210. #endif
  3211. tokenizer->advance();
  3212. } else {
  3213. _set_error("The optional parameter after \"class_name\" must be a string constant file path to an icon.");
  3214. return;
  3215. }
  3216. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT) {
  3217. _set_error("The class icon must be separated by a comma.");
  3218. return;
  3219. }
  3220. } break;
  3221. case GDScriptTokenizer::TK_PR_TOOL: {
  3222. if (p_class->tool) {
  3223. _set_error("The \"tool\" keyword can only be present once per script.");
  3224. return;
  3225. }
  3226. p_class->tool = true;
  3227. tokenizer->advance();
  3228. } break;
  3229. case GDScriptTokenizer::TK_PR_CLASS: {
  3230. //class inside class :D
  3231. StringName name;
  3232. if (tokenizer->get_token(1) != GDScriptTokenizer::TK_IDENTIFIER) {
  3233. _set_error("\"class\" syntax: \"class <Name>:\" or \"class <Name> extends <BaseClass>:\"");
  3234. return;
  3235. }
  3236. name = tokenizer->get_token_identifier(1);
  3237. tokenizer->advance(2);
  3238. // Check if name is shadowing something else
  3239. if (ClassDB::class_exists(name) || ClassDB::class_exists("_" + name.operator String())) {
  3240. _set_error("The class \"" + String(name) + "\" shadows a native class.");
  3241. return;
  3242. }
  3243. if (ScriptServer::is_global_class(name)) {
  3244. _set_error("Can't override name of the unique global class \"" + name + "\". It already exists at: " + ScriptServer::get_global_class_path(p_class->name));
  3245. return;
  3246. }
  3247. ClassNode *outer_class = p_class;
  3248. while (outer_class) {
  3249. for (int i = 0; i < outer_class->subclasses.size(); i++) {
  3250. if (outer_class->subclasses[i]->name == name) {
  3251. _set_error("Another class named \"" + String(name) + "\" already exists in this scope (at line " + itos(outer_class->subclasses[i]->line) + ").");
  3252. return;
  3253. }
  3254. }
  3255. if (outer_class->constant_expressions.has(name)) {
  3256. _set_error("A constant named \"" + String(name) + "\" already exists in the outer class scope (at line" + itos(outer_class->constant_expressions[name].expression->line) + ").");
  3257. return;
  3258. }
  3259. for (int i = 0; i < outer_class->variables.size(); i++) {
  3260. if (outer_class->variables[i].identifier == name) {
  3261. _set_error("A variable named \"" + String(name) + "\" already exists in the outer class scope (at line " + itos(outer_class->variables[i].line) + ").");
  3262. return;
  3263. }
  3264. }
  3265. outer_class = outer_class->owner;
  3266. }
  3267. ClassNode *newclass = alloc_node<ClassNode>();
  3268. newclass->initializer = alloc_node<BlockNode>();
  3269. newclass->initializer->parent_class = newclass;
  3270. newclass->ready = alloc_node<BlockNode>();
  3271. newclass->ready->parent_class = newclass;
  3272. newclass->name = name;
  3273. newclass->owner = p_class;
  3274. p_class->subclasses.push_back(newclass);
  3275. if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_EXTENDS) {
  3276. _parse_extends(newclass);
  3277. if (error_set) {
  3278. return;
  3279. }
  3280. }
  3281. if (!_enter_indent_block()) {
  3282. _set_error("Indented block expected.");
  3283. return;
  3284. }
  3285. current_class = newclass;
  3286. _parse_class(newclass);
  3287. current_class = p_class;
  3288. } break;
  3289. /* this is for functions....
  3290. case GDScriptTokenizer::TK_CF_PASS: {
  3291. tokenizer->advance(1);
  3292. } break;
  3293. */
  3294. case GDScriptTokenizer::TK_PR_STATIC: {
  3295. tokenizer->advance();
  3296. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  3297. _set_error("Expected \"func\".");
  3298. return;
  3299. }
  3300. FALLTHROUGH;
  3301. }
  3302. case GDScriptTokenizer::TK_PR_FUNCTION: {
  3303. bool _static = false;
  3304. pending_newline = -1;
  3305. if (tokenizer->get_token(-1) == GDScriptTokenizer::TK_PR_STATIC) {
  3306. _static = true;
  3307. }
  3308. tokenizer->advance();
  3309. StringName name;
  3310. if (_get_completable_identifier(COMPLETION_VIRTUAL_FUNC, name)) {
  3311. }
  3312. if (name == StringName()) {
  3313. _set_error("Expected an identifier after \"func\" (syntax: \"func <identifier>([arguments]):\").");
  3314. return;
  3315. }
  3316. for (int i = 0; i < p_class->functions.size(); i++) {
  3317. if (p_class->functions[i]->name == name) {
  3318. _set_error("The function \"" + String(name) + "\" already exists in this class (at line " + itos(p_class->functions[i]->line) + ").");
  3319. }
  3320. }
  3321. for (int i = 0; i < p_class->static_functions.size(); i++) {
  3322. if (p_class->static_functions[i]->name == name) {
  3323. _set_error("The function \"" + String(name) + "\" already exists in this class (at line " + itos(p_class->static_functions[i]->line) + ").");
  3324. }
  3325. }
  3326. #ifdef DEBUG_ENABLED
  3327. if (p_class->constant_expressions.has(name)) {
  3328. _add_warning(GDScriptWarning::FUNCTION_CONFLICTS_CONSTANT, -1, name);
  3329. }
  3330. for (int i = 0; i < p_class->variables.size(); i++) {
  3331. if (p_class->variables[i].identifier == name) {
  3332. _add_warning(GDScriptWarning::FUNCTION_CONFLICTS_VARIABLE, -1, name);
  3333. }
  3334. }
  3335. for (int i = 0; i < p_class->subclasses.size(); i++) {
  3336. if (p_class->subclasses[i]->name == name) {
  3337. _add_warning(GDScriptWarning::FUNCTION_CONFLICTS_CONSTANT, -1, name);
  3338. }
  3339. }
  3340. #endif // DEBUG_ENABLED
  3341. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  3342. _set_error("Expected \"(\" after the identifier (syntax: \"func <identifier>([arguments]):\" ).");
  3343. return;
  3344. }
  3345. tokenizer->advance();
  3346. Vector<StringName> arguments;
  3347. Vector<DataType> argument_types;
  3348. Vector<Node *> default_values;
  3349. #ifdef DEBUG_ENABLED
  3350. Vector<int> arguments_usage;
  3351. #endif // DEBUG_ENABLED
  3352. int fnline = tokenizer->get_token_line();
  3353. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3354. //has arguments
  3355. bool defaulting = false;
  3356. while (true) {
  3357. if (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  3358. tokenizer->advance();
  3359. continue;
  3360. }
  3361. if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_VAR) {
  3362. tokenizer->advance(); //var before the identifier is allowed
  3363. }
  3364. if (!tokenizer->is_token_literal(0, true)) {
  3365. _set_error("Expected an identifier for an argument.");
  3366. return;
  3367. }
  3368. StringName argname = tokenizer->get_token_identifier();
  3369. for (int i = 0; i < arguments.size(); i++) {
  3370. if (arguments[i] == argname) {
  3371. _set_error("The argument name \"" + String(argname) + "\" is defined multiple times.");
  3372. return;
  3373. }
  3374. }
  3375. arguments.push_back(argname);
  3376. #ifdef DEBUG_ENABLED
  3377. arguments_usage.push_back(0);
  3378. #endif // DEBUG_ENABLED
  3379. tokenizer->advance();
  3380. DataType argtype;
  3381. if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON) {
  3382. if (tokenizer->get_token(1) == GDScriptTokenizer::TK_OP_ASSIGN) {
  3383. argtype.infer_type = true;
  3384. tokenizer->advance();
  3385. } else if (!_parse_type(argtype)) {
  3386. _set_error("Expected a type for an argument.");
  3387. return;
  3388. }
  3389. }
  3390. argument_types.push_back(argtype);
  3391. if (defaulting && tokenizer->get_token() != GDScriptTokenizer::TK_OP_ASSIGN) {
  3392. _set_error("Default parameter expected.");
  3393. return;
  3394. }
  3395. //tokenizer->advance();
  3396. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_ASSIGN) {
  3397. defaulting = true;
  3398. tokenizer->advance(1);
  3399. Node *defval = _parse_and_reduce_expression(p_class, _static);
  3400. if (!defval || error_set) {
  3401. return;
  3402. }
  3403. OperatorNode *on = alloc_node<OperatorNode>();
  3404. on->op = OperatorNode::OP_ASSIGN;
  3405. on->line = fnline;
  3406. IdentifierNode *in = alloc_node<IdentifierNode>();
  3407. in->name = argname;
  3408. in->line = fnline;
  3409. on->arguments.push_back(in);
  3410. on->arguments.push_back(defval);
  3411. /* no ..
  3412. if (defval->type!=Node::TYPE_CONSTANT) {
  3413. _set_error("default argument must be constant");
  3414. }
  3415. */
  3416. default_values.push_back(on);
  3417. }
  3418. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  3419. tokenizer->advance();
  3420. }
  3421. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3422. tokenizer->advance();
  3423. continue;
  3424. } else if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3425. _set_error("Expected \",\" or \")\".");
  3426. return;
  3427. }
  3428. break;
  3429. }
  3430. }
  3431. tokenizer->advance();
  3432. BlockNode *block = alloc_node<BlockNode>();
  3433. block->parent_class = p_class;
  3434. FunctionNode *function = alloc_node<FunctionNode>();
  3435. function->name = name;
  3436. function->arguments = arguments;
  3437. function->argument_types = argument_types;
  3438. function->default_values = default_values;
  3439. function->_static = _static;
  3440. function->line = fnline;
  3441. #ifdef DEBUG_ENABLED
  3442. function->arguments_usage = arguments_usage;
  3443. #endif // DEBUG_ENABLED
  3444. function->rpc_mode = rpc_mode;
  3445. rpc_mode = MultiplayerAPI::RPC_MODE_DISABLED;
  3446. if (name == "_init") {
  3447. if (_static) {
  3448. _set_error("The constructor cannot be static.");
  3449. return;
  3450. }
  3451. if (p_class->extends_used) {
  3452. OperatorNode *cparent = alloc_node<OperatorNode>();
  3453. cparent->op = OperatorNode::OP_PARENT_CALL;
  3454. block->statements.push_back(cparent);
  3455. IdentifierNode *id = alloc_node<IdentifierNode>();
  3456. id->name = "_init";
  3457. cparent->arguments.push_back(id);
  3458. if (tokenizer->get_token() == GDScriptTokenizer::TK_PERIOD) {
  3459. tokenizer->advance();
  3460. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  3461. _set_error("Expected \"(\" for parent constructor arguments.");
  3462. return;
  3463. }
  3464. tokenizer->advance();
  3465. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3466. //has arguments
  3467. parenthesis++;
  3468. while (true) {
  3469. current_function = function;
  3470. Node *arg = _parse_and_reduce_expression(p_class, _static);
  3471. if (!arg) {
  3472. return;
  3473. }
  3474. current_function = nullptr;
  3475. cparent->arguments.push_back(arg);
  3476. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3477. tokenizer->advance();
  3478. continue;
  3479. } else if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3480. _set_error("Expected \",\" or \")\".");
  3481. return;
  3482. }
  3483. break;
  3484. }
  3485. parenthesis--;
  3486. }
  3487. tokenizer->advance();
  3488. }
  3489. } else {
  3490. if (tokenizer->get_token() == GDScriptTokenizer::TK_PERIOD) {
  3491. _set_error("Parent constructor call found for a class without inheritance.");
  3492. return;
  3493. }
  3494. }
  3495. }
  3496. DataType return_type;
  3497. if (tokenizer->get_token() == GDScriptTokenizer::TK_FORWARD_ARROW) {
  3498. if (!_parse_type(return_type, true)) {
  3499. _set_error("Expected a return type for the function.");
  3500. return;
  3501. }
  3502. }
  3503. if (!_enter_indent_block(block)) {
  3504. _set_error(vformat("Indented block expected after declaration of \"%s\" function.", function->name));
  3505. return;
  3506. }
  3507. function->return_type = return_type;
  3508. if (_static) {
  3509. p_class->static_functions.push_back(function);
  3510. } else {
  3511. p_class->functions.push_back(function);
  3512. }
  3513. current_function = function;
  3514. function->body = block;
  3515. current_block = block;
  3516. _parse_block(block, _static);
  3517. current_block = nullptr;
  3518. //arguments
  3519. } break;
  3520. case GDScriptTokenizer::TK_PR_SIGNAL: {
  3521. _mark_line_as_safe(tokenizer->get_token_line());
  3522. tokenizer->advance();
  3523. if (!tokenizer->is_token_literal()) {
  3524. _set_error("Expected an identifier after \"signal\".");
  3525. return;
  3526. }
  3527. ClassNode::Signal sig;
  3528. sig.name = tokenizer->get_token_identifier();
  3529. sig.emissions = 0;
  3530. sig.line = tokenizer->get_token_line();
  3531. for (int i = 0; i < current_class->_signals.size(); i++) {
  3532. if (current_class->_signals[i].name == sig.name) {
  3533. _set_error("The signal \"" + sig.name + "\" already exists in this class (at line: " + itos(current_class->_signals[i].line) + ").");
  3534. return;
  3535. }
  3536. }
  3537. tokenizer->advance();
  3538. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  3539. tokenizer->advance();
  3540. while (true) {
  3541. if (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  3542. tokenizer->advance();
  3543. continue;
  3544. }
  3545. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3546. tokenizer->advance();
  3547. break;
  3548. }
  3549. if (!tokenizer->is_token_literal(0, true)) {
  3550. _set_error("Expected an identifier in a \"signal\" argument.");
  3551. return;
  3552. }
  3553. sig.arguments.push_back(tokenizer->get_token_identifier());
  3554. tokenizer->advance();
  3555. while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  3556. tokenizer->advance();
  3557. }
  3558. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3559. tokenizer->advance();
  3560. } else if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3561. _set_error("Expected \",\" or \")\" after a \"signal\" parameter identifier.");
  3562. return;
  3563. }
  3564. }
  3565. }
  3566. p_class->_signals.push_back(sig);
  3567. if (!_end_statement()) {
  3568. _set_end_statement_error("signal");
  3569. return;
  3570. }
  3571. } break;
  3572. case GDScriptTokenizer::TK_PR_EXPORT: {
  3573. tokenizer->advance();
  3574. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_OPEN) {
  3575. #define _ADVANCE_AND_CONSUME_NEWLINES \
  3576. do { \
  3577. tokenizer->advance(); \
  3578. } while (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE)
  3579. _ADVANCE_AND_CONSUME_NEWLINES;
  3580. parenthesis++;
  3581. String hint_prefix = "";
  3582. bool is_arrayed = false;
  3583. while (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_TYPE &&
  3584. tokenizer->get_token_type() == Variant::ARRAY &&
  3585. tokenizer->get_token(1) == GDScriptTokenizer::TK_COMMA) {
  3586. tokenizer->advance(); // Array
  3587. tokenizer->advance(); // Comma
  3588. if (is_arrayed) {
  3589. hint_prefix += itos(Variant::ARRAY) + ":";
  3590. } else {
  3591. is_arrayed = true;
  3592. }
  3593. }
  3594. if (tokenizer->get_token() == GDScriptTokenizer::TK_BUILT_IN_TYPE) {
  3595. Variant::Type type = tokenizer->get_token_type();
  3596. if (type == Variant::NIL) {
  3597. _set_error("Can't export null type.");
  3598. return;
  3599. }
  3600. if (type == Variant::OBJECT) {
  3601. _set_error("Can't export raw object type.");
  3602. return;
  3603. }
  3604. current_export.type = type;
  3605. current_export.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  3606. _ADVANCE_AND_CONSUME_NEWLINES;
  3607. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3608. // hint expected next!
  3609. _ADVANCE_AND_CONSUME_NEWLINES;
  3610. switch (type) {
  3611. case Variant::INT: {
  3612. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "FLAGS") {
  3613. _ADVANCE_AND_CONSUME_NEWLINES;
  3614. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3615. WARN_DEPRECATED_MSG("Exporting bit flags hint requires string constants.");
  3616. break;
  3617. }
  3618. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3619. _set_error("Expected \",\" in the bit flags hint.");
  3620. return;
  3621. }
  3622. current_export.hint = PROPERTY_HINT_FLAGS;
  3623. _ADVANCE_AND_CONSUME_NEWLINES;
  3624. bool first = true;
  3625. while (true) {
  3626. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || tokenizer->get_token_constant().get_type() != Variant::STRING) {
  3627. current_export = PropertyInfo();
  3628. _set_error("Expected a string constant in the named bit flags hint.");
  3629. return;
  3630. }
  3631. String c = tokenizer->get_token_constant();
  3632. if (!first) {
  3633. current_export.hint_string += ",";
  3634. } else {
  3635. first = false;
  3636. }
  3637. current_export.hint_string += c.xml_escape();
  3638. _ADVANCE_AND_CONSUME_NEWLINES;
  3639. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3640. break;
  3641. }
  3642. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3643. current_export = PropertyInfo();
  3644. _set_error("Expected \")\" or \",\" in the named bit flags hint.");
  3645. return;
  3646. }
  3647. _ADVANCE_AND_CONSUME_NEWLINES;
  3648. }
  3649. break;
  3650. }
  3651. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "LAYERS_2D_RENDER") {
  3652. _ADVANCE_AND_CONSUME_NEWLINES;
  3653. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3654. _set_error("Expected \")\" in the layers 2D render hint.");
  3655. return;
  3656. }
  3657. current_export.hint = PROPERTY_HINT_LAYERS_2D_RENDER;
  3658. break;
  3659. }
  3660. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "LAYERS_2D_PHYSICS") {
  3661. _ADVANCE_AND_CONSUME_NEWLINES;
  3662. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3663. _set_error("Expected \")\" in the layers 2D physics hint.");
  3664. return;
  3665. }
  3666. current_export.hint = PROPERTY_HINT_LAYERS_2D_PHYSICS;
  3667. break;
  3668. }
  3669. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "LAYERS_2D_NAVIGATION") {
  3670. _ADVANCE_AND_CONSUME_NEWLINES;
  3671. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3672. _set_error("Expected \")\" in the layers 2D navigation hint.");
  3673. return;
  3674. }
  3675. current_export.hint = PROPERTY_HINT_LAYERS_2D_NAVIGATION;
  3676. break;
  3677. }
  3678. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "LAYERS_3D_RENDER") {
  3679. _ADVANCE_AND_CONSUME_NEWLINES;
  3680. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3681. _set_error("Expected \")\" in the layers 3D render hint.");
  3682. return;
  3683. }
  3684. current_export.hint = PROPERTY_HINT_LAYERS_3D_RENDER;
  3685. break;
  3686. }
  3687. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "LAYERS_3D_PHYSICS") {
  3688. _ADVANCE_AND_CONSUME_NEWLINES;
  3689. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3690. _set_error("Expected \")\" in the layers 3D physics hint.");
  3691. return;
  3692. }
  3693. current_export.hint = PROPERTY_HINT_LAYERS_3D_PHYSICS;
  3694. break;
  3695. }
  3696. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "LAYERS_3D_NAVIGATION") {
  3697. _ADVANCE_AND_CONSUME_NEWLINES;
  3698. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3699. _set_error("Expected \")\" in the layers 3D navigation hint.");
  3700. return;
  3701. }
  3702. current_export.hint = PROPERTY_HINT_LAYERS_3D_NAVIGATION;
  3703. break;
  3704. }
  3705. if (tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT && tokenizer->get_token_constant().get_type() == Variant::STRING) {
  3706. //enumeration
  3707. current_export.hint = PROPERTY_HINT_ENUM;
  3708. bool first = true;
  3709. while (true) {
  3710. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || tokenizer->get_token_constant().get_type() != Variant::STRING) {
  3711. current_export = PropertyInfo();
  3712. _set_error("Expected a string constant in the enumeration hint.");
  3713. return;
  3714. }
  3715. String c = tokenizer->get_token_constant();
  3716. if (!first) {
  3717. current_export.hint_string += ",";
  3718. } else {
  3719. first = false;
  3720. }
  3721. current_export.hint_string += c.xml_escape();
  3722. _ADVANCE_AND_CONSUME_NEWLINES;
  3723. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3724. break;
  3725. }
  3726. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3727. current_export = PropertyInfo();
  3728. _set_error("Expected \")\" or \",\" in the enumeration hint.");
  3729. return;
  3730. }
  3731. _ADVANCE_AND_CONSUME_NEWLINES;
  3732. }
  3733. break;
  3734. }
  3735. FALLTHROUGH;
  3736. }
  3737. case Variant::REAL: {
  3738. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "EASE") {
  3739. current_export.hint = PROPERTY_HINT_EXP_EASING;
  3740. _ADVANCE_AND_CONSUME_NEWLINES;
  3741. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3742. _set_error("Expected \")\" in the hint.");
  3743. return;
  3744. }
  3745. break;
  3746. }
  3747. // range
  3748. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "EXP") {
  3749. current_export.hint = PROPERTY_HINT_EXP_RANGE;
  3750. _ADVANCE_AND_CONSUME_NEWLINES;
  3751. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3752. break;
  3753. } else if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3754. _set_error("Expected \")\" or \",\" in the exponential range hint.");
  3755. return;
  3756. }
  3757. _ADVANCE_AND_CONSUME_NEWLINES;
  3758. } else {
  3759. current_export.hint = PROPERTY_HINT_RANGE;
  3760. }
  3761. float sign = 1.0;
  3762. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_SUB) {
  3763. sign = -1;
  3764. _ADVANCE_AND_CONSUME_NEWLINES;
  3765. }
  3766. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || !tokenizer->get_token_constant().is_num()) {
  3767. current_export = PropertyInfo();
  3768. _set_error("Expected a range in the numeric hint.");
  3769. return;
  3770. }
  3771. current_export.hint_string = rtos(sign * double(tokenizer->get_token_constant()));
  3772. _ADVANCE_AND_CONSUME_NEWLINES;
  3773. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3774. current_export.hint_string = "0," + current_export.hint_string;
  3775. break;
  3776. }
  3777. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3778. current_export = PropertyInfo();
  3779. _set_error("Expected \",\" or \")\" in the numeric range hint.");
  3780. return;
  3781. }
  3782. _ADVANCE_AND_CONSUME_NEWLINES;
  3783. sign = 1.0;
  3784. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_SUB) {
  3785. sign = -1;
  3786. _ADVANCE_AND_CONSUME_NEWLINES;
  3787. }
  3788. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || !tokenizer->get_token_constant().is_num()) {
  3789. current_export = PropertyInfo();
  3790. _set_error("Expected a number as upper bound in the numeric range hint.");
  3791. return;
  3792. }
  3793. current_export.hint_string += "," + rtos(sign * double(tokenizer->get_token_constant()));
  3794. _ADVANCE_AND_CONSUME_NEWLINES;
  3795. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3796. break;
  3797. }
  3798. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3799. current_export = PropertyInfo();
  3800. _set_error("Expected \",\" or \")\" in the numeric range hint.");
  3801. return;
  3802. }
  3803. _ADVANCE_AND_CONSUME_NEWLINES;
  3804. sign = 1.0;
  3805. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_SUB) {
  3806. sign = -1;
  3807. _ADVANCE_AND_CONSUME_NEWLINES;
  3808. }
  3809. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || !tokenizer->get_token_constant().is_num()) {
  3810. current_export = PropertyInfo();
  3811. _set_error("Expected a number as step in the numeric range hint.");
  3812. return;
  3813. }
  3814. current_export.hint_string += "," + rtos(sign * double(tokenizer->get_token_constant()));
  3815. _ADVANCE_AND_CONSUME_NEWLINES;
  3816. } break;
  3817. case Variant::STRING: {
  3818. if (tokenizer->get_token() == GDScriptTokenizer::TK_CONSTANT && tokenizer->get_token_constant().get_type() == Variant::STRING) {
  3819. //enumeration
  3820. current_export.hint = PROPERTY_HINT_ENUM;
  3821. bool first = true;
  3822. while (true) {
  3823. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || tokenizer->get_token_constant().get_type() != Variant::STRING) {
  3824. current_export = PropertyInfo();
  3825. _set_error("Expected a string constant in the enumeration hint.");
  3826. return;
  3827. }
  3828. String c = tokenizer->get_token_constant();
  3829. if (!first) {
  3830. current_export.hint_string += ",";
  3831. } else {
  3832. first = false;
  3833. }
  3834. current_export.hint_string += c.xml_escape();
  3835. _ADVANCE_AND_CONSUME_NEWLINES;
  3836. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3837. break;
  3838. }
  3839. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  3840. current_export = PropertyInfo();
  3841. _set_error("Expected \")\" or \",\" in the enumeration hint.");
  3842. return;
  3843. }
  3844. _ADVANCE_AND_CONSUME_NEWLINES;
  3845. }
  3846. break;
  3847. }
  3848. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "DIR") {
  3849. _ADVANCE_AND_CONSUME_NEWLINES;
  3850. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3851. current_export.hint = PROPERTY_HINT_DIR;
  3852. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3853. _ADVANCE_AND_CONSUME_NEWLINES;
  3854. if (tokenizer->get_token() != GDScriptTokenizer::TK_IDENTIFIER || !(tokenizer->get_token_identifier() == "GLOBAL")) {
  3855. _set_error("Expected \"GLOBAL\" after comma in the directory hint.");
  3856. return;
  3857. }
  3858. if (!p_class->tool) {
  3859. _set_error("Global filesystem hints may only be used in tool scripts.");
  3860. return;
  3861. }
  3862. current_export.hint = PROPERTY_HINT_GLOBAL_DIR;
  3863. _ADVANCE_AND_CONSUME_NEWLINES;
  3864. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3865. _set_error("Expected \")\" in the hint.");
  3866. return;
  3867. }
  3868. } else {
  3869. _set_error("Expected \")\" or \",\" in the hint.");
  3870. return;
  3871. }
  3872. break;
  3873. }
  3874. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "FILE") {
  3875. current_export.hint = PROPERTY_HINT_FILE;
  3876. _ADVANCE_AND_CONSUME_NEWLINES;
  3877. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3878. _ADVANCE_AND_CONSUME_NEWLINES;
  3879. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "GLOBAL") {
  3880. if (!p_class->tool) {
  3881. _set_error("Global filesystem hints may only be used in tool scripts.");
  3882. return;
  3883. }
  3884. current_export.hint = PROPERTY_HINT_GLOBAL_FILE;
  3885. _ADVANCE_AND_CONSUME_NEWLINES;
  3886. if (tokenizer->get_token() == GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3887. break;
  3888. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3889. _ADVANCE_AND_CONSUME_NEWLINES;
  3890. } else {
  3891. _set_error("Expected \")\" or \",\" in the hint.");
  3892. return;
  3893. }
  3894. }
  3895. if (tokenizer->get_token() != GDScriptTokenizer::TK_CONSTANT || tokenizer->get_token_constant().get_type() != Variant::STRING) {
  3896. if (current_export.hint == PROPERTY_HINT_GLOBAL_FILE) {
  3897. _set_error("Expected string constant with filter.");
  3898. } else {
  3899. _set_error("Expected \"GLOBAL\" or string constant with filter.");
  3900. }
  3901. return;
  3902. }
  3903. current_export.hint_string = tokenizer->get_token_constant();
  3904. _ADVANCE_AND_CONSUME_NEWLINES;
  3905. }
  3906. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3907. _set_error("Expected \")\" in the hint.");
  3908. return;
  3909. }
  3910. break;
  3911. }
  3912. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "MULTILINE") {
  3913. current_export.hint = PROPERTY_HINT_MULTILINE_TEXT;
  3914. _ADVANCE_AND_CONSUME_NEWLINES;
  3915. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  3916. _set_error("Expected \")\" in the hint.");
  3917. return;
  3918. }
  3919. break;
  3920. }
  3921. } break;
  3922. case Variant::COLOR: {
  3923. if (tokenizer->get_token() != GDScriptTokenizer::TK_IDENTIFIER) {
  3924. current_export = PropertyInfo();
  3925. _set_error("Color type hint expects RGB or RGBA as hints.");
  3926. return;
  3927. }
  3928. String identifier = tokenizer->get_token_identifier();
  3929. if (identifier == "RGB") {
  3930. current_export.hint = PROPERTY_HINT_COLOR_NO_ALPHA;
  3931. } else if (identifier == "RGBA") {
  3932. //none
  3933. } else {
  3934. current_export = PropertyInfo();
  3935. _set_error("Color type hint expects RGB or RGBA as hints.");
  3936. return;
  3937. }
  3938. _ADVANCE_AND_CONSUME_NEWLINES;
  3939. } break;
  3940. default: {
  3941. current_export = PropertyInfo();
  3942. _set_error("Type \"" + Variant::get_type_name(type) + "\" can't take hints.");
  3943. return;
  3944. } break;
  3945. }
  3946. }
  3947. } else {
  3948. parenthesis++;
  3949. Node *subexpr = _parse_and_reduce_expression(p_class, true, true);
  3950. if (!subexpr) {
  3951. if (_recover_from_completion()) {
  3952. break;
  3953. }
  3954. return;
  3955. }
  3956. parenthesis--;
  3957. if (subexpr->type != Node::TYPE_CONSTANT) {
  3958. current_export = PropertyInfo();
  3959. _set_error("Expected a constant expression.");
  3960. return;
  3961. }
  3962. Variant constant = static_cast<ConstantNode *>(subexpr)->value;
  3963. if (constant.get_type() == Variant::OBJECT) {
  3964. GDScriptNativeClass *native_class = Object::cast_to<GDScriptNativeClass>(constant);
  3965. if (native_class && ClassDB::is_parent_class(native_class->get_name(), "Resource")) {
  3966. current_export.type = Variant::OBJECT;
  3967. current_export.hint = PROPERTY_HINT_RESOURCE_TYPE;
  3968. current_export.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  3969. current_export.hint_string = native_class->get_name();
  3970. current_export.class_name = native_class->get_name();
  3971. } else {
  3972. current_export = PropertyInfo();
  3973. _set_error("The export hint isn't a resource type.");
  3974. }
  3975. } else if (constant.get_type() == Variant::DICTIONARY) {
  3976. // Enumeration
  3977. bool is_flags = false;
  3978. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  3979. _ADVANCE_AND_CONSUME_NEWLINES;
  3980. if (tokenizer->get_token() == GDScriptTokenizer::TK_IDENTIFIER && tokenizer->get_token_identifier() == "FLAGS") {
  3981. is_flags = true;
  3982. _ADVANCE_AND_CONSUME_NEWLINES;
  3983. } else {
  3984. current_export = PropertyInfo();
  3985. _set_error("Expected \"FLAGS\" after comma.");
  3986. }
  3987. }
  3988. current_export.type = Variant::INT;
  3989. current_export.hint = is_flags ? PROPERTY_HINT_FLAGS : PROPERTY_HINT_ENUM;
  3990. current_export.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  3991. Dictionary enum_values = constant;
  3992. List<Variant> keys;
  3993. enum_values.get_key_list(&keys);
  3994. bool first = true;
  3995. for (List<Variant>::Element *E = keys.front(); E; E = E->next()) {
  3996. if (enum_values[E->get()].get_type() == Variant::INT) {
  3997. if (!first) {
  3998. current_export.hint_string += ",";
  3999. } else {
  4000. first = false;
  4001. }
  4002. current_export.hint_string += E->get().operator String().capitalize().xml_escape();
  4003. if (!is_flags) {
  4004. current_export.hint_string += ":";
  4005. current_export.hint_string += enum_values[E->get()].operator String().xml_escape();
  4006. }
  4007. }
  4008. }
  4009. } else {
  4010. current_export = PropertyInfo();
  4011. _set_error("Expected type for export.");
  4012. return;
  4013. }
  4014. }
  4015. if (tokenizer->get_token() != GDScriptTokenizer::TK_PARENTHESIS_CLOSE) {
  4016. current_export = PropertyInfo();
  4017. _set_error("Expected \")\" or \",\" after the export hint.");
  4018. return;
  4019. }
  4020. tokenizer->advance();
  4021. parenthesis--;
  4022. if (is_arrayed) {
  4023. hint_prefix += itos(current_export.type);
  4024. if (current_export.hint) {
  4025. hint_prefix += "/" + itos(current_export.hint);
  4026. }
  4027. current_export.hint_string = hint_prefix + ":" + current_export.hint_string;
  4028. current_export.hint = PROPERTY_HINT_TYPE_STRING;
  4029. current_export.type = Variant::ARRAY;
  4030. }
  4031. #undef _ADVANCE_AND_CONSUME_NEWLINES
  4032. }
  4033. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_ONREADY && tokenizer->get_token() != GDScriptTokenizer::TK_PR_REMOTE && tokenizer->get_token() != GDScriptTokenizer::TK_PR_MASTER && tokenizer->get_token() != GDScriptTokenizer::TK_PR_PUPPET && tokenizer->get_token() != GDScriptTokenizer::TK_PR_SYNC && tokenizer->get_token() != GDScriptTokenizer::TK_PR_REMOTESYNC && tokenizer->get_token() != GDScriptTokenizer::TK_PR_MASTERSYNC && tokenizer->get_token() != GDScriptTokenizer::TK_PR_PUPPETSYNC && tokenizer->get_token() != GDScriptTokenizer::TK_PR_SLAVE) {
  4034. current_export = PropertyInfo();
  4035. _set_error("Expected \"var\", \"onready\", \"remote\", \"master\", \"puppet\", \"sync\", \"remotesync\", \"mastersync\", \"puppetsync\".");
  4036. return;
  4037. }
  4038. continue;
  4039. } break;
  4040. case GDScriptTokenizer::TK_PR_ONREADY: {
  4041. //may be fallthrough from export, ignore if so
  4042. tokenizer->advance();
  4043. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR) {
  4044. _set_error("Expected \"var\".");
  4045. return;
  4046. }
  4047. continue;
  4048. } break;
  4049. case GDScriptTokenizer::TK_PR_REMOTE: {
  4050. //may be fallthrough from export, ignore if so
  4051. tokenizer->advance();
  4052. if (current_export.type) {
  4053. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR) {
  4054. _set_error("Expected \"var\".");
  4055. return;
  4056. }
  4057. } else {
  4058. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  4059. _set_error("Expected \"var\" or \"func\".");
  4060. return;
  4061. }
  4062. }
  4063. rpc_mode = MultiplayerAPI::RPC_MODE_REMOTE;
  4064. continue;
  4065. } break;
  4066. case GDScriptTokenizer::TK_PR_MASTER: {
  4067. //may be fallthrough from export, ignore if so
  4068. tokenizer->advance();
  4069. if (current_export.type) {
  4070. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR) {
  4071. _set_error("Expected \"var\".");
  4072. return;
  4073. }
  4074. } else {
  4075. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  4076. _set_error("Expected \"var\" or \"func\".");
  4077. return;
  4078. }
  4079. }
  4080. rpc_mode = MultiplayerAPI::RPC_MODE_MASTER;
  4081. continue;
  4082. } break;
  4083. case GDScriptTokenizer::TK_PR_SLAVE:
  4084. #ifdef DEBUG_ENABLED
  4085. _add_warning(GDScriptWarning::DEPRECATED_KEYWORD, tokenizer->get_token_line(), "slave", "puppet");
  4086. #endif
  4087. FALLTHROUGH;
  4088. case GDScriptTokenizer::TK_PR_PUPPET: {
  4089. //may be fallthrough from export, ignore if so
  4090. tokenizer->advance();
  4091. if (current_export.type) {
  4092. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR) {
  4093. _set_error("Expected \"var\".");
  4094. return;
  4095. }
  4096. } else {
  4097. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  4098. _set_error("Expected \"var\" or \"func\".");
  4099. return;
  4100. }
  4101. }
  4102. rpc_mode = MultiplayerAPI::RPC_MODE_PUPPET;
  4103. continue;
  4104. } break;
  4105. case GDScriptTokenizer::TK_PR_REMOTESYNC:
  4106. case GDScriptTokenizer::TK_PR_SYNC: {
  4107. //may be fallthrough from export, ignore if so
  4108. tokenizer->advance();
  4109. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  4110. if (current_export.type) {
  4111. _set_error("Expected \"var\".");
  4112. } else {
  4113. _set_error("Expected \"var\" or \"func\".");
  4114. }
  4115. return;
  4116. }
  4117. rpc_mode = MultiplayerAPI::RPC_MODE_REMOTESYNC;
  4118. continue;
  4119. } break;
  4120. case GDScriptTokenizer::TK_PR_MASTERSYNC: {
  4121. //may be fallthrough from export, ignore if so
  4122. tokenizer->advance();
  4123. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  4124. if (current_export.type) {
  4125. _set_error("Expected \"var\".");
  4126. } else {
  4127. _set_error("Expected \"var\" or \"func\".");
  4128. }
  4129. return;
  4130. }
  4131. rpc_mode = MultiplayerAPI::RPC_MODE_MASTERSYNC;
  4132. continue;
  4133. } break;
  4134. case GDScriptTokenizer::TK_PR_PUPPETSYNC: {
  4135. //may be fallthrough from export, ignore if so
  4136. tokenizer->advance();
  4137. if (tokenizer->get_token() != GDScriptTokenizer::TK_PR_VAR && tokenizer->get_token() != GDScriptTokenizer::TK_PR_FUNCTION) {
  4138. if (current_export.type) {
  4139. _set_error("Expected \"var\".");
  4140. } else {
  4141. _set_error("Expected \"var\" or \"func\".");
  4142. }
  4143. return;
  4144. }
  4145. rpc_mode = MultiplayerAPI::RPC_MODE_PUPPETSYNC;
  4146. continue;
  4147. } break;
  4148. case GDScriptTokenizer::TK_PR_VAR: {
  4149. // variable declaration and (eventual) initialization
  4150. ClassNode::Member member;
  4151. bool autoexport = tokenizer->get_token(-1) == GDScriptTokenizer::TK_PR_EXPORT;
  4152. if (current_export.type != Variant::NIL) {
  4153. member._export = current_export;
  4154. current_export = PropertyInfo();
  4155. }
  4156. bool onready = tokenizer->get_token(-1) == GDScriptTokenizer::TK_PR_ONREADY;
  4157. tokenizer->advance();
  4158. if (!tokenizer->is_token_literal(0, true)) {
  4159. _set_error("Expected an identifier for the member variable name.");
  4160. return;
  4161. }
  4162. member.identifier = tokenizer->get_token_literal();
  4163. member.expression = nullptr;
  4164. member._export.name = member.identifier;
  4165. member.line = tokenizer->get_token_line();
  4166. member.usages = 0;
  4167. member.rpc_mode = rpc_mode;
  4168. if (current_class->constant_expressions.has(member.identifier)) {
  4169. _set_error("A constant named \"" + String(member.identifier) + "\" already exists in this class (at line: " +
  4170. itos(current_class->constant_expressions[member.identifier].expression->line) + ").");
  4171. return;
  4172. }
  4173. for (int i = 0; i < current_class->variables.size(); i++) {
  4174. if (current_class->variables[i].identifier == member.identifier) {
  4175. _set_error("Variable \"" + String(member.identifier) + "\" already exists in this class (at line: " +
  4176. itos(current_class->variables[i].line) + ").");
  4177. return;
  4178. }
  4179. }
  4180. for (int i = 0; i < current_class->subclasses.size(); i++) {
  4181. if (current_class->subclasses[i]->name == member.identifier) {
  4182. _set_error("A class named \"" + String(member.identifier) + "\" already exists in this class (at line " + itos(current_class->subclasses[i]->line) + ").");
  4183. return;
  4184. }
  4185. }
  4186. #ifdef DEBUG_ENABLED
  4187. for (int i = 0; i < current_class->functions.size(); i++) {
  4188. if (current_class->functions[i]->name == member.identifier) {
  4189. _add_warning(GDScriptWarning::VARIABLE_CONFLICTS_FUNCTION, member.line, member.identifier);
  4190. break;
  4191. }
  4192. }
  4193. for (int i = 0; i < current_class->static_functions.size(); i++) {
  4194. if (current_class->static_functions[i]->name == member.identifier) {
  4195. _add_warning(GDScriptWarning::VARIABLE_CONFLICTS_FUNCTION, member.line, member.identifier);
  4196. break;
  4197. }
  4198. }
  4199. #endif // DEBUG_ENABLED
  4200. tokenizer->advance();
  4201. rpc_mode = MultiplayerAPI::RPC_MODE_DISABLED;
  4202. if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON) {
  4203. if (tokenizer->get_token(1) == GDScriptTokenizer::TK_OP_ASSIGN) {
  4204. member.data_type = DataType();
  4205. member.data_type.infer_type = true;
  4206. tokenizer->advance();
  4207. } else if (!_parse_type(member.data_type)) {
  4208. _set_error("Expected a type for the class variable.");
  4209. return;
  4210. }
  4211. }
  4212. if (autoexport && member.data_type.has_type) {
  4213. if (member.data_type.kind == DataType::BUILTIN) {
  4214. member._export.type = member.data_type.builtin_type;
  4215. member._export.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  4216. } else if (member.data_type.kind == DataType::NATIVE) {
  4217. if (ClassDB::is_parent_class(member.data_type.native_type, "Resource")) {
  4218. member._export.type = Variant::OBJECT;
  4219. member._export.hint = PROPERTY_HINT_RESOURCE_TYPE;
  4220. member._export.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  4221. member._export.hint_string = member.data_type.native_type;
  4222. member._export.class_name = member.data_type.native_type;
  4223. } else {
  4224. _set_error("Invalid export type. Only built-in and native resource types can be exported.", member.line);
  4225. return;
  4226. }
  4227. } else {
  4228. _set_error("Invalid export type. Only built-in and native resource types can be exported.", member.line);
  4229. return;
  4230. }
  4231. }
  4232. #ifdef TOOLS_ENABLED
  4233. Variant::CallError ce;
  4234. member.default_value = Variant::construct(member._export.type, nullptr, 0, ce);
  4235. #endif
  4236. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_ASSIGN) {
  4237. #ifdef DEBUG_ENABLED
  4238. int line = tokenizer->get_token_line();
  4239. #endif
  4240. tokenizer->advance();
  4241. Node *subexpr = _parse_and_reduce_expression(p_class, false, autoexport || member._export.type != Variant::NIL);
  4242. if (!subexpr) {
  4243. if (_recover_from_completion()) {
  4244. break;
  4245. }
  4246. return;
  4247. }
  4248. //discourage common error
  4249. if (!onready && subexpr->type == Node::TYPE_OPERATOR) {
  4250. OperatorNode *op = static_cast<OperatorNode *>(subexpr);
  4251. if (op->op == OperatorNode::OP_CALL && op->arguments[0]->type == Node::TYPE_SELF && op->arguments[1]->type == Node::TYPE_IDENTIFIER) {
  4252. IdentifierNode *id = static_cast<IdentifierNode *>(op->arguments[1]);
  4253. if (id->name == "get_node") {
  4254. _set_error("Use \"onready var " + String(member.identifier) + " = get_node(...)\" instead.");
  4255. return;
  4256. }
  4257. }
  4258. }
  4259. member.expression = subexpr;
  4260. if (autoexport && !member.data_type.has_type) {
  4261. if (subexpr->type != Node::TYPE_CONSTANT) {
  4262. _set_error("Type-less export needs a constant expression assigned to infer type.");
  4263. return;
  4264. }
  4265. ConstantNode *cn = static_cast<ConstantNode *>(subexpr);
  4266. if (cn->value.get_type() == Variant::NIL) {
  4267. _set_error("Can't accept a null constant expression for inferring export type.");
  4268. return;
  4269. }
  4270. if (!_reduce_export_var_type(cn->value, member.line)) {
  4271. return;
  4272. }
  4273. member._export.type = cn->value.get_type();
  4274. member._export.usage |= PROPERTY_USAGE_SCRIPT_VARIABLE;
  4275. if (cn->value.get_type() == Variant::OBJECT) {
  4276. Object *obj = cn->value;
  4277. Resource *res = Object::cast_to<Resource>(obj);
  4278. if (res == nullptr) {
  4279. _set_error("The exported constant isn't a type or resource.");
  4280. return;
  4281. }
  4282. member._export.hint = PROPERTY_HINT_RESOURCE_TYPE;
  4283. member._export.hint_string = res->get_class();
  4284. }
  4285. }
  4286. #ifdef TOOLS_ENABLED
  4287. // Warn if the default value set is not the same as the export type, since it won't be coerced and
  4288. // may create wrong expectations.
  4289. if (subexpr->type == Node::TYPE_CONSTANT && (member._export.type != Variant::NIL || member.data_type.has_type)) {
  4290. ConstantNode *cn = static_cast<ConstantNode *>(subexpr);
  4291. if (cn->value.get_type() != Variant::NIL) {
  4292. if (member._export.type != Variant::NIL && cn->value.get_type() != member._export.type) {
  4293. if (!Variant::can_convert(cn->value.get_type(), member._export.type)) {
  4294. _set_error("Can't convert the provided value to the export type.");
  4295. return;
  4296. } else if (!member.data_type.has_type) {
  4297. _add_warning(GDScriptWarning::EXPORT_HINT_TYPE_MISTMATCH, member.line, Variant::get_type_name(cn->value.get_type()), Variant::get_type_name(member._export.type));
  4298. }
  4299. }
  4300. }
  4301. member.default_value = cn->value;
  4302. }
  4303. #endif
  4304. IdentifierNode *id = alloc_node<IdentifierNode>();
  4305. id->name = member.identifier;
  4306. id->datatype = member.data_type;
  4307. OperatorNode *op = alloc_node<OperatorNode>();
  4308. op->op = OperatorNode::OP_INIT_ASSIGN;
  4309. op->arguments.push_back(id);
  4310. op->arguments.push_back(subexpr);
  4311. #ifdef DEBUG_ENABLED
  4312. NewLineNode *nl2 = alloc_node<NewLineNode>();
  4313. nl2->line = line;
  4314. if (onready) {
  4315. p_class->ready->statements.push_back(nl2);
  4316. } else {
  4317. p_class->initializer->statements.push_back(nl2);
  4318. }
  4319. #endif
  4320. if (onready) {
  4321. p_class->ready->statements.push_back(op);
  4322. } else {
  4323. p_class->initializer->statements.push_back(op);
  4324. }
  4325. member.initial_assignment = op;
  4326. } else {
  4327. if (autoexport && !member.data_type.has_type) {
  4328. _set_error("Type-less export needs a constant expression assigned to infer type.");
  4329. return;
  4330. }
  4331. Node *expr;
  4332. if (member.data_type.has_type) {
  4333. expr = _get_default_value_for_type(member.data_type);
  4334. } else {
  4335. DataType exported_type;
  4336. exported_type.has_type = true;
  4337. exported_type.kind = DataType::BUILTIN;
  4338. exported_type.builtin_type = member._export.type;
  4339. expr = _get_default_value_for_type(exported_type);
  4340. }
  4341. IdentifierNode *id = alloc_node<IdentifierNode>();
  4342. id->name = member.identifier;
  4343. id->datatype = member.data_type;
  4344. OperatorNode *op = alloc_node<OperatorNode>();
  4345. op->op = OperatorNode::OP_INIT_ASSIGN;
  4346. op->arguments.push_back(id);
  4347. op->arguments.push_back(expr);
  4348. p_class->initializer->statements.push_back(op);
  4349. member.initial_assignment = op;
  4350. }
  4351. if (tokenizer->get_token() == GDScriptTokenizer::TK_PR_SETGET) {
  4352. tokenizer->advance();
  4353. if (tokenizer->get_token() != GDScriptTokenizer::TK_COMMA) {
  4354. //just comma means using only getter
  4355. if (!tokenizer->is_token_literal()) {
  4356. _set_error("Expected an identifier for the setter function after \"setget\".");
  4357. }
  4358. member.setter = tokenizer->get_token_literal();
  4359. tokenizer->advance();
  4360. }
  4361. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  4362. //there is a getter
  4363. tokenizer->advance();
  4364. if (!tokenizer->is_token_literal()) {
  4365. _set_error("Expected an identifier for the getter function after \",\".");
  4366. }
  4367. member.getter = tokenizer->get_token_literal();
  4368. tokenizer->advance();
  4369. }
  4370. }
  4371. p_class->variables.push_back(member);
  4372. if (!_end_statement()) {
  4373. _set_end_statement_error("var");
  4374. return;
  4375. }
  4376. } break;
  4377. case GDScriptTokenizer::TK_PR_CONST: {
  4378. // constant declaration and initialization
  4379. ClassNode::Constant constant;
  4380. tokenizer->advance();
  4381. if (!tokenizer->is_token_literal(0, true)) {
  4382. _set_error("Expected an identifier for the constant.");
  4383. return;
  4384. }
  4385. StringName const_id = tokenizer->get_token_literal();
  4386. int line = tokenizer->get_token_line();
  4387. if (current_class->constant_expressions.has(const_id)) {
  4388. _set_error("Constant \"" + String(const_id) + "\" already exists in this class (at line " +
  4389. itos(current_class->constant_expressions[const_id].expression->line) + ").");
  4390. return;
  4391. }
  4392. for (int i = 0; i < current_class->variables.size(); i++) {
  4393. if (current_class->variables[i].identifier == const_id) {
  4394. _set_error("A variable named \"" + String(const_id) + "\" already exists in this class (at line " +
  4395. itos(current_class->variables[i].line) + ").");
  4396. return;
  4397. }
  4398. }
  4399. for (int i = 0; i < current_class->subclasses.size(); i++) {
  4400. if (current_class->subclasses[i]->name == const_id) {
  4401. _set_error("A class named \"" + String(const_id) + "\" already exists in this class (at line " + itos(current_class->subclasses[i]->line) + ").");
  4402. return;
  4403. }
  4404. }
  4405. tokenizer->advance();
  4406. if (tokenizer->get_token() == GDScriptTokenizer::TK_COLON) {
  4407. if (tokenizer->get_token(1) == GDScriptTokenizer::TK_OP_ASSIGN) {
  4408. constant.type = DataType();
  4409. constant.type.infer_type = true;
  4410. tokenizer->advance();
  4411. } else if (!_parse_type(constant.type)) {
  4412. _set_error("Expected a type for the class constant.");
  4413. return;
  4414. }
  4415. }
  4416. if (tokenizer->get_token() != GDScriptTokenizer::TK_OP_ASSIGN) {
  4417. _set_error("Constants must be assigned immediately.");
  4418. return;
  4419. }
  4420. tokenizer->advance();
  4421. Node *subexpr = _parse_and_reduce_expression(p_class, true, true);
  4422. if (!subexpr) {
  4423. if (_recover_from_completion()) {
  4424. break;
  4425. }
  4426. return;
  4427. }
  4428. if (subexpr->type != Node::TYPE_CONSTANT) {
  4429. _set_error("Expected a constant expression.", line);
  4430. return;
  4431. }
  4432. subexpr->line = line;
  4433. constant.expression = subexpr;
  4434. p_class->constant_expressions.insert(const_id, constant);
  4435. if (!_end_statement()) {
  4436. _set_end_statement_error("const");
  4437. return;
  4438. }
  4439. } break;
  4440. case GDScriptTokenizer::TK_PR_ENUM: {
  4441. //multiple constant declarations..
  4442. int last_assign = -1; // Incremented by 1 right before the assignment.
  4443. String enum_name;
  4444. Dictionary enum_dict;
  4445. int enum_start_line = tokenizer->get_token_line();
  4446. tokenizer->advance();
  4447. if (tokenizer->is_token_literal(0, true)) {
  4448. enum_name = tokenizer->get_token_literal();
  4449. if (current_class->constant_expressions.has(enum_name)) {
  4450. _set_error("A constant named \"" + String(enum_name) + "\" already exists in this class (at line " +
  4451. itos(current_class->constant_expressions[enum_name].expression->line) + ").");
  4452. return;
  4453. }
  4454. for (int i = 0; i < current_class->variables.size(); i++) {
  4455. if (current_class->variables[i].identifier == enum_name) {
  4456. _set_error("A variable named \"" + String(enum_name) + "\" already exists in this class (at line " +
  4457. itos(current_class->variables[i].line) + ").");
  4458. return;
  4459. }
  4460. }
  4461. for (int i = 0; i < current_class->subclasses.size(); i++) {
  4462. if (current_class->subclasses[i]->name == enum_name) {
  4463. _set_error("A class named \"" + String(enum_name) + "\" already exists in this class (at line " + itos(current_class->subclasses[i]->line) + ").");
  4464. return;
  4465. }
  4466. }
  4467. tokenizer->advance();
  4468. }
  4469. if (tokenizer->get_token() != GDScriptTokenizer::TK_CURLY_BRACKET_OPEN) {
  4470. _set_error("Expected \"{\" in the enum declaration.");
  4471. return;
  4472. }
  4473. tokenizer->advance();
  4474. while (true) {
  4475. if (tokenizer->get_token() == GDScriptTokenizer::TK_NEWLINE) {
  4476. tokenizer->advance(); // Ignore newlines
  4477. } else if (tokenizer->get_token() == GDScriptTokenizer::TK_CURLY_BRACKET_CLOSE) {
  4478. tokenizer->advance();
  4479. break; // End of enum
  4480. } else if (!tokenizer->is_token_literal(0, true)) {
  4481. if (tokenizer->get_token() == GDScriptTokenizer::TK_EOF) {
  4482. _set_error("Unexpected end of file.");
  4483. } else {
  4484. _set_error(String("Unexpected ") + GDScriptTokenizer::get_token_name(tokenizer->get_token()) + ", expected an identifier.");
  4485. }
  4486. return;
  4487. } else { // tokenizer->is_token_literal(0, true)
  4488. StringName const_id = tokenizer->get_token_literal();
  4489. tokenizer->advance();
  4490. ConstantNode *enum_value_expr;
  4491. if (tokenizer->get_token() == GDScriptTokenizer::TK_OP_ASSIGN) {
  4492. tokenizer->advance();
  4493. Node *subexpr = _parse_and_reduce_expression(p_class, true, true);
  4494. if (!subexpr) {
  4495. if (_recover_from_completion()) {
  4496. break;
  4497. }
  4498. return;
  4499. }
  4500. if (subexpr->type != Node::TYPE_CONSTANT) {
  4501. _set_error("Expected a constant expression.");
  4502. return;
  4503. }
  4504. enum_value_expr = static_cast<ConstantNode *>(subexpr);
  4505. if (enum_value_expr->value.get_type() != Variant::INT) {
  4506. _set_error("Expected an integer value for \"enum\".");
  4507. return;
  4508. }
  4509. last_assign = enum_value_expr->value;
  4510. } else {
  4511. last_assign = last_assign + 1;
  4512. enum_value_expr = alloc_node<ConstantNode>();
  4513. enum_value_expr->value = last_assign;
  4514. enum_value_expr->datatype = _type_from_variant(enum_value_expr->value);
  4515. }
  4516. if (tokenizer->get_token() == GDScriptTokenizer::TK_COMMA) {
  4517. tokenizer->advance();
  4518. } else if (tokenizer->is_token_literal(0, true)) {
  4519. _set_error("Unexpected identifier.");
  4520. return;
  4521. }
  4522. if (enum_name != "") {
  4523. enum_dict[const_id] = enum_value_expr->value;
  4524. } else {
  4525. if (current_class->constant_expressions.has(const_id)) {
  4526. _set_error("A constant named \"" + String(const_id) + "\" already exists in this class (at line " +
  4527. itos(current_class->constant_expressions[const_id].expression->line) + ").");
  4528. return;
  4529. }
  4530. for (int i = 0; i < current_class->variables.size(); i++) {
  4531. if (current_class->variables[i].identifier == const_id) {
  4532. _set_error("A variable named \"" + String(const_id) + "\" already exists in this class (at line " +
  4533. itos(current_class->variables[i].line) + ").");
  4534. return;
  4535. }
  4536. }
  4537. for (int i = 0; i < current_class->subclasses.size(); i++) {
  4538. if (current_class->subclasses[i]->name == const_id) {
  4539. _set_error("A class named \"" + String(const_id) + "\" already exists in this class (at line " + itos(current_class->subclasses[i]->line) + ").");
  4540. return;
  4541. }
  4542. }
  4543. ClassNode::Constant constant;
  4544. constant.type.has_type = true;
  4545. constant.type.kind = DataType::BUILTIN;
  4546. constant.type.builtin_type = Variant::INT;
  4547. constant.expression = enum_value_expr;
  4548. p_class->constant_expressions.insert(const_id, constant);
  4549. }
  4550. }
  4551. }
  4552. if (enum_name != "") {
  4553. ClassNode::Constant enum_constant;
  4554. ConstantNode *cn = alloc_node<ConstantNode>();
  4555. cn->value = enum_dict;
  4556. cn->datatype = _type_from_variant(cn->value);
  4557. cn->line = enum_start_line;
  4558. enum_constant.expression = cn;
  4559. enum_constant.type = cn->datatype;
  4560. p_class->constant_expressions.insert(enum_name, enum_constant);
  4561. }
  4562. if (!_end_statement()) {
  4563. _set_end_statement_error("enum");
  4564. return;
  4565. }
  4566. } break;
  4567. case GDScriptTokenizer::TK_CONSTANT: {
  4568. if (tokenizer->get_token_constant().get_type() == Variant::STRING) {
  4569. tokenizer->advance();
  4570. // Ignore
  4571. } else {
  4572. _set_error(String() + "Unexpected constant of type: " + Variant::get_type_name(tokenizer->get_token_constant().get_type()));
  4573. return;
  4574. }
  4575. } break;
  4576. case GDScriptTokenizer::TK_CF_PASS: {
  4577. tokenizer->advance();
  4578. } break;
  4579. default: {
  4580. if (token == GDScriptTokenizer::TK_IDENTIFIER) {
  4581. completion_type = COMPLETION_IDENTIFIER;
  4582. completion_class = current_class;
  4583. completion_function = current_function;
  4584. completion_line = tokenizer->get_token_line();
  4585. completion_block = current_block;
  4586. completion_ident_is_call = false;
  4587. completion_found = true;
  4588. }
  4589. _set_error(String() + "Unexpected token: " + tokenizer->get_token_name(tokenizer->get_token()) + ":" + tokenizer->get_token_identifier());
  4590. return;
  4591. } break;
  4592. }
  4593. }
  4594. }
  4595. void GDScriptParser::_determine_inheritance(ClassNode *p_class, bool p_recursive) {
  4596. if (p_class->base_type.has_type) {
  4597. // Already determined
  4598. } else if (p_class->extends_used) {
  4599. //do inheritance
  4600. String path = p_class->extends_file;
  4601. Ref<GDScript> script;
  4602. StringName native;
  4603. ClassNode *base_class = nullptr;
  4604. if (path != "") {
  4605. //path (and optionally subclasses)
  4606. if (path.is_rel_path()) {
  4607. String base = base_path;
  4608. if (base == "" || base.is_rel_path()) {
  4609. _set_error("Couldn't resolve relative path for the parent class: " + path, p_class->line);
  4610. return;
  4611. }
  4612. path = base.plus_file(path).simplify_path();
  4613. }
  4614. script = ResourceLoader::load(path);
  4615. if (script.is_null()) {
  4616. _set_error("Couldn't load the base class: " + path, p_class->line);
  4617. return;
  4618. }
  4619. if (!script->is_valid()) {
  4620. _set_error("Script isn't fully loaded (cyclic preload?): " + path, p_class->line);
  4621. return;
  4622. }
  4623. if (p_class->extends_class.size()) {
  4624. for (int i = 0; i < p_class->extends_class.size(); i++) {
  4625. String sub = p_class->extends_class[i];
  4626. if (script->get_subclasses().has(sub)) {
  4627. Ref<Script> subclass = script->get_subclasses()[sub]; //avoid reference from disappearing
  4628. script = subclass;
  4629. } else {
  4630. _set_error("Couldn't find the subclass: " + sub, p_class->line);
  4631. return;
  4632. }
  4633. }
  4634. }
  4635. } else {
  4636. if (p_class->extends_class.size() == 0) {
  4637. _set_error("Parser bug: undecidable inheritance.", p_class->line);
  4638. ERR_FAIL();
  4639. }
  4640. //look around for the subclasses
  4641. int extend_iter = 1;
  4642. String base = p_class->extends_class[0];
  4643. ClassNode *p = p_class->owner;
  4644. Ref<GDScript> base_script;
  4645. if (ScriptServer::is_global_class(base)) {
  4646. base_script = ResourceLoader::load(ScriptServer::get_global_class_path(base));
  4647. if (!base_script.is_valid()) {
  4648. _set_error("The class \"" + base + "\" couldn't be fully loaded (script error or cyclic dependency).", p_class->line);
  4649. return;
  4650. }
  4651. p = nullptr;
  4652. } else {
  4653. List<PropertyInfo> props;
  4654. ProjectSettings::get_singleton()->get_property_list(&props);
  4655. for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) {
  4656. String s = E->get().name;
  4657. if (!s.begins_with("autoload/")) {
  4658. continue;
  4659. }
  4660. String name = s.get_slice("/", 1);
  4661. if (name == base) {
  4662. String singleton_path = ProjectSettings::get_singleton()->get(s);
  4663. if (singleton_path.begins_with("*")) {
  4664. singleton_path = singleton_path.right(1);
  4665. }
  4666. if (!singleton_path.begins_with("res://")) {
  4667. singleton_path = "res://" + singleton_path;
  4668. }
  4669. base_script = ResourceLoader::load(singleton_path);
  4670. if (!base_script.is_valid()) {
  4671. _set_error("Class '" + base + "' could not be fully loaded (script error or cyclic inheritance).", p_class->line);
  4672. return;
  4673. }
  4674. p = nullptr;
  4675. }
  4676. }
  4677. }
  4678. while (p) {
  4679. bool found = false;
  4680. for (int i = 0; i < p->subclasses.size(); i++) {
  4681. if (p->subclasses[i]->name == base) {
  4682. ClassNode *test = p->subclasses[i];
  4683. while (test) {
  4684. if (test == p_class) {
  4685. _set_error("Cyclic inheritance.", test->line);
  4686. return;
  4687. }
  4688. if (test->base_type.kind == DataType::CLASS) {
  4689. test = test->base_type.class_type;
  4690. } else {
  4691. break;
  4692. }
  4693. }
  4694. found = true;
  4695. if (extend_iter < p_class->extends_class.size()) {
  4696. // Keep looking at current classes if possible
  4697. base = p_class->extends_class[extend_iter++];
  4698. p = p->subclasses[i];
  4699. } else {
  4700. base_class = p->subclasses[i];
  4701. }
  4702. break;
  4703. }
  4704. }
  4705. if (base_class) {
  4706. break;
  4707. }
  4708. if (found) {
  4709. continue;
  4710. }
  4711. if (p->constant_expressions.has(base)) {
  4712. if (p->constant_expressions[base].expression->type != Node::TYPE_CONSTANT) {
  4713. _set_error("Couldn't resolve the constant \"" + base + "\".", p_class->line);
  4714. return;
  4715. }
  4716. const ConstantNode *cn = static_cast<const ConstantNode *>(p->constant_expressions[base].expression);
  4717. base_script = cn->value;
  4718. if (base_script.is_null()) {
  4719. _set_error("Constant isn't a class: " + base, p_class->line);
  4720. return;
  4721. }
  4722. break;
  4723. }
  4724. p = p->owner;
  4725. }
  4726. if (base_script.is_valid()) {
  4727. String ident = base;
  4728. Ref<GDScript> find_subclass = base_script;
  4729. for (int i = extend_iter; i < p_class->extends_class.size(); i++) {
  4730. String subclass = p_class->extends_class[i];
  4731. ident += ("." + subclass);
  4732. if (find_subclass->get_subclasses().has(subclass)) {
  4733. find_subclass = find_subclass->get_subclasses()[subclass];
  4734. } else if (find_subclass->get_constants().has(subclass)) {
  4735. Ref<GDScript> new_base_class = find_subclass->get_constants()[subclass];
  4736. if (new_base_class.is_null()) {
  4737. _set_error("Constant isn't a class: " + ident, p_class->line);
  4738. return;
  4739. }
  4740. find_subclass = new_base_class;
  4741. } else {
  4742. _set_error("Couldn't find the subclass: " + ident, p_class->line);
  4743. return;
  4744. }
  4745. }
  4746. script = find_subclass;
  4747. } else if (!base_class) {
  4748. if (p_class->extends_class.size() > 1) {
  4749. _set_error("Invalid inheritance (unknown class + subclasses).", p_class->line);
  4750. return;
  4751. }
  4752. //if not found, try engine classes
  4753. if (!GDScriptLanguage::get_singleton()->get_global_map().has(base)) {
  4754. _set_error("Unknown class: \"" + base + "\"", p_class->line);
  4755. return;
  4756. }
  4757. native = base;
  4758. }
  4759. }
  4760. if (base_class) {
  4761. p_class->base_type.has_type = true;
  4762. p_class->base_type.kind = DataType::CLASS;
  4763. p_class->base_type.class_type = base_class;
  4764. } else if (script.is_valid()) {
  4765. p_class->base_type.has_type = true;
  4766. p_class->base_type.kind = DataType::GDSCRIPT;
  4767. p_class->base_type.script_type = script;
  4768. p_class->base_type.native_type = script->get_instance_base_type();
  4769. } else if (native != StringName()) {
  4770. p_class->base_type.has_type = true;
  4771. p_class->base_type.kind = DataType::NATIVE;
  4772. p_class->base_type.native_type = native;
  4773. } else {
  4774. _set_error("Couldn't determine inheritance.", p_class->line);
  4775. return;
  4776. }
  4777. } else {
  4778. // without extends, implicitly extend Reference
  4779. p_class->base_type.has_type = true;
  4780. p_class->base_type.kind = DataType::NATIVE;
  4781. p_class->base_type.native_type = "Reference";
  4782. }
  4783. if (p_recursive) {
  4784. // Recursively determine subclasses
  4785. for (int i = 0; i < p_class->subclasses.size(); i++) {
  4786. _determine_inheritance(p_class->subclasses[i], p_recursive);
  4787. }
  4788. }
  4789. }
  4790. String GDScriptParser::DataType::to_string() const {
  4791. if (!has_type) {
  4792. return "var";
  4793. }
  4794. switch (kind) {
  4795. case BUILTIN: {
  4796. if (builtin_type == Variant::NIL) {
  4797. return "null";
  4798. }
  4799. return Variant::get_type_name(builtin_type);
  4800. } break;
  4801. case NATIVE: {
  4802. if (is_meta_type) {
  4803. return "GDScriptNativeClass";
  4804. }
  4805. return native_type.operator String();
  4806. } break;
  4807. case GDSCRIPT: {
  4808. Ref<GDScript> gds = script_type;
  4809. const String &gds_class = gds->get_script_class_name();
  4810. if (!gds_class.empty()) {
  4811. return gds_class;
  4812. }
  4813. FALLTHROUGH;
  4814. }
  4815. case SCRIPT: {
  4816. if (is_meta_type) {
  4817. return script_type->get_class_name().operator String();
  4818. }
  4819. String name = script_type->get_name();
  4820. if (name != String()) {
  4821. return name;
  4822. }
  4823. name = script_type->get_path().get_file();
  4824. if (name != String()) {
  4825. return name;
  4826. }
  4827. return native_type.operator String();
  4828. } break;
  4829. case CLASS: {
  4830. ERR_FAIL_COND_V(!class_type, String());
  4831. if (is_meta_type) {
  4832. return "GDScript";
  4833. }
  4834. if (class_type->name == StringName()) {
  4835. return "self";
  4836. }
  4837. return class_type->name.operator String();
  4838. } break;
  4839. case UNRESOLVED: {
  4840. } break;
  4841. }
  4842. return "Unresolved";
  4843. }
  4844. bool GDScriptParser::_parse_type(DataType &r_type, bool p_can_be_void) {
  4845. tokenizer->advance();
  4846. r_type.has_type = true;
  4847. bool finished = false;
  4848. bool can_index = false;
  4849. String full_name;
  4850. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  4851. completion_cursor = StringName();
  4852. completion_type = COMPLETION_TYPE_HINT;
  4853. completion_class = current_class;
  4854. completion_function = current_function;
  4855. completion_line = tokenizer->get_token_line();
  4856. completion_argument = 0;
  4857. completion_block = current_block;
  4858. completion_found = true;
  4859. completion_ident_is_call = p_can_be_void;
  4860. tokenizer->advance();
  4861. }
  4862. switch (tokenizer->get_token()) {
  4863. case GDScriptTokenizer::TK_PR_VOID: {
  4864. if (!p_can_be_void) {
  4865. return false;
  4866. }
  4867. r_type.kind = DataType::BUILTIN;
  4868. r_type.builtin_type = Variant::NIL;
  4869. } break;
  4870. case GDScriptTokenizer::TK_BUILT_IN_TYPE: {
  4871. r_type.builtin_type = tokenizer->get_token_type();
  4872. if (tokenizer->get_token_type() == Variant::OBJECT) {
  4873. r_type.kind = DataType::NATIVE;
  4874. r_type.native_type = "Object";
  4875. } else {
  4876. r_type.kind = DataType::BUILTIN;
  4877. }
  4878. } break;
  4879. case GDScriptTokenizer::TK_IDENTIFIER: {
  4880. r_type.native_type = tokenizer->get_token_identifier();
  4881. if (ClassDB::class_exists(r_type.native_type) || ClassDB::class_exists("_" + r_type.native_type.operator String())) {
  4882. r_type.kind = DataType::NATIVE;
  4883. } else {
  4884. r_type.kind = DataType::UNRESOLVED;
  4885. can_index = true;
  4886. full_name = r_type.native_type;
  4887. }
  4888. } break;
  4889. default: {
  4890. return false;
  4891. }
  4892. }
  4893. tokenizer->advance();
  4894. if (tokenizer->get_token() == GDScriptTokenizer::TK_CURSOR) {
  4895. completion_cursor = r_type.native_type;
  4896. completion_type = COMPLETION_TYPE_HINT;
  4897. completion_class = current_class;
  4898. completion_function = current_function;
  4899. completion_line = tokenizer->get_token_line();
  4900. completion_argument = 0;
  4901. completion_block = current_block;
  4902. completion_found = true;
  4903. completion_ident_is_call = p_can_be_void;
  4904. tokenizer->advance();
  4905. }
  4906. if (can_index) {
  4907. while (!finished) {
  4908. switch (tokenizer->get_token()) {
  4909. case GDScriptTokenizer::TK_PERIOD: {
  4910. if (!can_index) {
  4911. _set_error("Unexpected \".\".");
  4912. return false;
  4913. }
  4914. can_index = false;
  4915. tokenizer->advance();
  4916. } break;
  4917. case GDScriptTokenizer::TK_IDENTIFIER: {
  4918. if (can_index) {
  4919. _set_error("Unexpected identifier.");
  4920. return false;
  4921. }
  4922. StringName id;
  4923. bool has_completion = _get_completable_identifier(COMPLETION_TYPE_HINT_INDEX, id);
  4924. if (id == StringName()) {
  4925. id = "@temp";
  4926. }
  4927. full_name += "." + id.operator String();
  4928. can_index = true;
  4929. if (has_completion) {
  4930. completion_cursor = full_name;
  4931. }
  4932. } break;
  4933. default: {
  4934. finished = true;
  4935. } break;
  4936. }
  4937. }
  4938. if (tokenizer->get_token(-1) == GDScriptTokenizer::TK_PERIOD) {
  4939. _set_error("Expected a subclass identifier.");
  4940. return false;
  4941. }
  4942. r_type.native_type = full_name;
  4943. }
  4944. return true;
  4945. }
  4946. GDScriptParser::DataType GDScriptParser::_resolve_type(const DataType &p_source, int p_line) {
  4947. if (!p_source.has_type) {
  4948. return p_source;
  4949. }
  4950. if (p_source.kind != DataType::UNRESOLVED) {
  4951. return p_source;
  4952. }
  4953. Vector<String> full_name = p_source.native_type.operator String().split(".", false);
  4954. int name_part = 0;
  4955. DataType result;
  4956. result.has_type = true;
  4957. while (name_part < full_name.size()) {
  4958. bool found = false;
  4959. StringName id = full_name[name_part];
  4960. DataType base_type = result;
  4961. ClassNode *p = nullptr;
  4962. if (name_part == 0) {
  4963. if (ScriptServer::is_global_class(id)) {
  4964. String script_path = ScriptServer::get_global_class_path(id);
  4965. if (script_path == self_path) {
  4966. result.kind = DataType::CLASS;
  4967. result.class_type = static_cast<ClassNode *>(head);
  4968. } else {
  4969. Ref<Script> script = ResourceLoader::load(script_path);
  4970. Ref<GDScript> gds = script;
  4971. if (gds.is_valid()) {
  4972. if (!gds->is_valid()) {
  4973. _set_error("The class \"" + id + "\" couldn't be fully loaded (script error or cyclic dependency).", p_line);
  4974. return DataType();
  4975. }
  4976. result.kind = DataType::GDSCRIPT;
  4977. result.script_type = gds;
  4978. } else if (script.is_valid()) {
  4979. result.kind = DataType::SCRIPT;
  4980. result.script_type = script;
  4981. } else {
  4982. _set_error("The class \"" + id + "\" was found in global scope, but its script couldn't be loaded.", p_line);
  4983. return DataType();
  4984. }
  4985. }
  4986. name_part++;
  4987. continue;
  4988. }
  4989. List<PropertyInfo> props;
  4990. ProjectSettings::get_singleton()->get_property_list(&props);
  4991. String singleton_path;
  4992. for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) {
  4993. String s = E->get().name;
  4994. if (!s.begins_with("autoload/")) {
  4995. continue;
  4996. }
  4997. String name = s.get_slice("/", 1);
  4998. if (name == id) {
  4999. singleton_path = ProjectSettings::get_singleton()->get(s);
  5000. if (singleton_path.begins_with("*")) {
  5001. singleton_path = singleton_path.right(1);
  5002. }
  5003. if (!singleton_path.begins_with("res://")) {
  5004. singleton_path = "res://" + singleton_path;
  5005. }
  5006. break;
  5007. }
  5008. }
  5009. if (!singleton_path.empty()) {
  5010. Ref<Script> script = ResourceLoader::load(singleton_path);
  5011. Ref<GDScript> gds = script;
  5012. if (gds.is_valid()) {
  5013. if (!gds->is_valid()) {
  5014. _set_error("Class '" + id + "' could not be fully loaded (script error or cyclic inheritance).", p_line);
  5015. return DataType();
  5016. }
  5017. result.kind = DataType::GDSCRIPT;
  5018. result.script_type = gds;
  5019. } else if (script.is_valid()) {
  5020. result.kind = DataType::SCRIPT;
  5021. result.script_type = script;
  5022. } else {
  5023. _set_error("Couldn't fully load singleton script '" + id + "' (possible cyclic reference or parse error).", p_line);
  5024. return DataType();
  5025. }
  5026. name_part++;
  5027. continue;
  5028. }
  5029. p = current_class;
  5030. } else if (base_type.kind == DataType::CLASS) {
  5031. p = base_type.class_type;
  5032. }
  5033. while (p) {
  5034. if (p->constant_expressions.has(id)) {
  5035. if (p->constant_expressions[id].expression->type != Node::TYPE_CONSTANT) {
  5036. _set_error("Parser bug: unresolved constant.", p_line);
  5037. ERR_FAIL_V(result);
  5038. }
  5039. const ConstantNode *cn = static_cast<const ConstantNode *>(p->constant_expressions[id].expression);
  5040. Ref<GDScript> gds = cn->value;
  5041. if (gds.is_valid()) {
  5042. result.kind = DataType::GDSCRIPT;
  5043. result.script_type = gds;
  5044. found = true;
  5045. } else {
  5046. Ref<Script> scr = cn->value;
  5047. if (scr.is_valid()) {
  5048. result.kind = DataType::SCRIPT;
  5049. result.script_type = scr;
  5050. found = true;
  5051. }
  5052. }
  5053. break;
  5054. }
  5055. // Inner classes
  5056. ClassNode *outer_class = p;
  5057. while (outer_class) {
  5058. if (outer_class->name == id) {
  5059. found = true;
  5060. result.kind = DataType::CLASS;
  5061. result.class_type = outer_class;
  5062. break;
  5063. }
  5064. for (int i = 0; i < outer_class->subclasses.size(); i++) {
  5065. if (outer_class->subclasses[i] == p) {
  5066. continue;
  5067. }
  5068. if (outer_class->subclasses[i]->name == id) {
  5069. found = true;
  5070. result.kind = DataType::CLASS;
  5071. result.class_type = outer_class->subclasses[i];
  5072. break;
  5073. }
  5074. }
  5075. if (found) {
  5076. break;
  5077. }
  5078. outer_class = outer_class->owner;
  5079. }
  5080. if (!found && p->base_type.kind == DataType::CLASS) {
  5081. p = p->base_type.class_type;
  5082. } else {
  5083. base_type = p->base_type;
  5084. break;
  5085. }
  5086. }
  5087. // Still look for class constants in parent scripts
  5088. if (!found && (base_type.kind == DataType::GDSCRIPT || base_type.kind == DataType::SCRIPT)) {
  5089. Ref<Script> scr = base_type.script_type;
  5090. ERR_FAIL_COND_V(scr.is_null(), result);
  5091. while (scr.is_valid()) {
  5092. Map<StringName, Variant> constants;
  5093. scr->get_constants(&constants);
  5094. if (constants.has(id)) {
  5095. Ref<GDScript> gds = constants[id];
  5096. if (gds.is_valid()) {
  5097. result.kind = DataType::GDSCRIPT;
  5098. result.script_type = gds;
  5099. found = true;
  5100. } else {
  5101. Ref<Script> scr2 = constants[id];
  5102. if (scr2.is_valid()) {
  5103. result.kind = DataType::SCRIPT;
  5104. result.script_type = scr2;
  5105. found = true;
  5106. }
  5107. }
  5108. }
  5109. if (found) {
  5110. break;
  5111. } else {
  5112. scr = scr->get_base_script();
  5113. }
  5114. }
  5115. }
  5116. if (!found && !for_completion) {
  5117. String base;
  5118. if (name_part == 0) {
  5119. base = "self";
  5120. } else {
  5121. base = result.to_string();
  5122. }
  5123. _set_error("The identifier \"" + String(id) +
  5124. "\" isn't a valid type (not a script or class), or couldn't be found on base \"" + base + "\".",
  5125. p_line);
  5126. return DataType();
  5127. }
  5128. name_part++;
  5129. }
  5130. return result;
  5131. }
  5132. GDScriptParser::DataType GDScriptParser::_type_from_variant(const Variant &p_value) const {
  5133. DataType result;
  5134. result.has_type = true;
  5135. result.is_constant = true;
  5136. result.kind = DataType::BUILTIN;
  5137. result.builtin_type = p_value.get_type();
  5138. if (result.builtin_type == Variant::OBJECT) {
  5139. Object *obj = p_value.operator Object *();
  5140. if (!obj) {
  5141. return DataType();
  5142. }
  5143. result.native_type = obj->get_class_name();
  5144. Ref<Script> scr = p_value;
  5145. if (scr.is_valid()) {
  5146. result.is_meta_type = true;
  5147. } else {
  5148. result.is_meta_type = false;
  5149. scr = obj->get_script();
  5150. }
  5151. if (scr.is_valid()) {
  5152. result.script_type = scr;
  5153. Ref<GDScript> gds = scr;
  5154. if (gds.is_valid()) {
  5155. result.kind = DataType::GDSCRIPT;
  5156. } else {
  5157. result.kind = DataType::SCRIPT;
  5158. }
  5159. result.native_type = scr->get_instance_base_type();
  5160. } else {
  5161. result.kind = DataType::NATIVE;
  5162. }
  5163. }
  5164. return result;
  5165. }
  5166. GDScriptParser::DataType GDScriptParser::_type_from_property(const PropertyInfo &p_property, bool p_nil_is_variant) const {
  5167. DataType ret;
  5168. if (p_property.type == Variant::NIL && (p_nil_is_variant || (p_property.usage & PROPERTY_USAGE_NIL_IS_VARIANT))) {
  5169. // Variant
  5170. return ret;
  5171. }
  5172. ret.has_type = true;
  5173. ret.builtin_type = p_property.type;
  5174. if (p_property.type == Variant::OBJECT) {
  5175. ret.kind = DataType::NATIVE;
  5176. ret.native_type = p_property.class_name == StringName() ? "Object" : p_property.class_name;
  5177. } else {
  5178. ret.kind = DataType::BUILTIN;
  5179. }
  5180. return ret;
  5181. }
  5182. GDScriptParser::DataType GDScriptParser::_type_from_gdtype(const GDScriptDataType &p_gdtype) const {
  5183. DataType result;
  5184. if (!p_gdtype.has_type) {
  5185. return result;
  5186. }
  5187. result.has_type = true;
  5188. result.builtin_type = p_gdtype.builtin_type;
  5189. result.native_type = p_gdtype.native_type;
  5190. result.script_type = Ref<Script>(p_gdtype.script_type);
  5191. switch (p_gdtype.kind) {
  5192. case GDScriptDataType::UNINITIALIZED: {
  5193. ERR_PRINT("Uninitialized datatype. Please report a bug.");
  5194. } break;
  5195. case GDScriptDataType::BUILTIN: {
  5196. result.kind = DataType::BUILTIN;
  5197. } break;
  5198. case GDScriptDataType::NATIVE: {
  5199. result.kind = DataType::NATIVE;
  5200. } break;
  5201. case GDScriptDataType::GDSCRIPT: {
  5202. result.kind = DataType::GDSCRIPT;
  5203. } break;
  5204. case GDScriptDataType::SCRIPT: {
  5205. result.kind = DataType::SCRIPT;
  5206. } break;
  5207. }
  5208. return result;
  5209. }
  5210. GDScriptParser::DataType GDScriptParser::_get_operation_type(const Variant::Operator p_op, const DataType &p_a, const DataType &p_b, bool &r_valid) const {
  5211. if (!p_a.has_type || !p_b.has_type) {
  5212. r_valid = true;
  5213. return DataType();
  5214. }
  5215. Variant::Type a_type = p_a.kind == DataType::BUILTIN ? p_a.builtin_type : Variant::OBJECT;
  5216. Variant::Type b_type = p_b.kind == DataType::BUILTIN ? p_b.builtin_type : Variant::OBJECT;
  5217. Variant a;
  5218. REF a_ref;
  5219. if (a_type == Variant::OBJECT) {
  5220. a_ref.instance();
  5221. a = a_ref;
  5222. } else {
  5223. Variant::CallError err;
  5224. a = Variant::construct(a_type, nullptr, 0, err);
  5225. if (err.error != Variant::CallError::CALL_OK) {
  5226. r_valid = false;
  5227. return DataType();
  5228. }
  5229. }
  5230. Variant b;
  5231. REF b_ref;
  5232. if (b_type == Variant::OBJECT) {
  5233. b_ref.instance();
  5234. b = b_ref;
  5235. } else {
  5236. Variant::CallError err;
  5237. b = Variant::construct(b_type, nullptr, 0, err);
  5238. if (err.error != Variant::CallError::CALL_OK) {
  5239. r_valid = false;
  5240. return DataType();
  5241. }
  5242. }
  5243. // Avoid division by zero
  5244. if (a_type == Variant::INT || a_type == Variant::REAL) {
  5245. Variant::evaluate(Variant::OP_ADD, a, 1, a, r_valid);
  5246. }
  5247. if (b_type == Variant::INT || b_type == Variant::REAL) {
  5248. Variant::evaluate(Variant::OP_ADD, b, 1, b, r_valid);
  5249. }
  5250. if (a_type == Variant::STRING && b_type != Variant::ARRAY) {
  5251. a = "%s"; // Work around for formatting operator (%)
  5252. }
  5253. Variant ret;
  5254. Variant::evaluate(p_op, a, b, ret, r_valid);
  5255. if (r_valid) {
  5256. return _type_from_variant(ret);
  5257. }
  5258. return DataType();
  5259. }
  5260. Variant::Operator GDScriptParser::_get_variant_operation(const OperatorNode::Operator &p_op) const {
  5261. switch (p_op) {
  5262. case OperatorNode::OP_NEG: {
  5263. return Variant::OP_NEGATE;
  5264. } break;
  5265. case OperatorNode::OP_POS: {
  5266. return Variant::OP_POSITIVE;
  5267. } break;
  5268. case OperatorNode::OP_NOT: {
  5269. return Variant::OP_NOT;
  5270. } break;
  5271. case OperatorNode::OP_BIT_INVERT: {
  5272. return Variant::OP_BIT_NEGATE;
  5273. } break;
  5274. case OperatorNode::OP_IN: {
  5275. return Variant::OP_IN;
  5276. } break;
  5277. case OperatorNode::OP_EQUAL: {
  5278. return Variant::OP_EQUAL;
  5279. } break;
  5280. case OperatorNode::OP_NOT_EQUAL: {
  5281. return Variant::OP_NOT_EQUAL;
  5282. } break;
  5283. case OperatorNode::OP_LESS: {
  5284. return Variant::OP_LESS;
  5285. } break;
  5286. case OperatorNode::OP_LESS_EQUAL: {
  5287. return Variant::OP_LESS_EQUAL;
  5288. } break;
  5289. case OperatorNode::OP_GREATER: {
  5290. return Variant::OP_GREATER;
  5291. } break;
  5292. case OperatorNode::OP_GREATER_EQUAL: {
  5293. return Variant::OP_GREATER_EQUAL;
  5294. } break;
  5295. case OperatorNode::OP_AND: {
  5296. return Variant::OP_AND;
  5297. } break;
  5298. case OperatorNode::OP_OR: {
  5299. return Variant::OP_OR;
  5300. } break;
  5301. case OperatorNode::OP_ASSIGN_ADD:
  5302. case OperatorNode::OP_ADD: {
  5303. return Variant::OP_ADD;
  5304. } break;
  5305. case OperatorNode::OP_ASSIGN_SUB:
  5306. case OperatorNode::OP_SUB: {
  5307. return Variant::OP_SUBTRACT;
  5308. } break;
  5309. case OperatorNode::OP_ASSIGN_MUL:
  5310. case OperatorNode::OP_MUL: {
  5311. return Variant::OP_MULTIPLY;
  5312. } break;
  5313. case OperatorNode::OP_ASSIGN_DIV:
  5314. case OperatorNode::OP_DIV: {
  5315. return Variant::OP_DIVIDE;
  5316. } break;
  5317. case OperatorNode::OP_ASSIGN_MOD:
  5318. case OperatorNode::OP_MOD: {
  5319. return Variant::OP_MODULE;
  5320. } break;
  5321. case OperatorNode::OP_ASSIGN_BIT_AND:
  5322. case OperatorNode::OP_BIT_AND: {
  5323. return Variant::OP_BIT_AND;
  5324. } break;
  5325. case OperatorNode::OP_ASSIGN_BIT_OR:
  5326. case OperatorNode::OP_BIT_OR: {
  5327. return Variant::OP_BIT_OR;
  5328. } break;
  5329. case OperatorNode::OP_ASSIGN_BIT_XOR:
  5330. case OperatorNode::OP_BIT_XOR: {
  5331. return Variant::OP_BIT_XOR;
  5332. } break;
  5333. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  5334. case OperatorNode::OP_SHIFT_LEFT: {
  5335. return Variant::OP_SHIFT_LEFT;
  5336. }
  5337. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  5338. case OperatorNode::OP_SHIFT_RIGHT: {
  5339. return Variant::OP_SHIFT_RIGHT;
  5340. }
  5341. default: {
  5342. return Variant::OP_MAX;
  5343. } break;
  5344. }
  5345. }
  5346. bool GDScriptParser::_is_type_compatible(const DataType &p_container, const DataType &p_expression, bool p_allow_implicit_conversion) const {
  5347. // Ignore for completion
  5348. if (!check_types || for_completion) {
  5349. return true;
  5350. }
  5351. // Can't test if not all have type
  5352. if (!p_container.has_type || !p_expression.has_type) {
  5353. return true;
  5354. }
  5355. // Should never get here unresolved
  5356. ERR_FAIL_COND_V(p_container.kind == DataType::UNRESOLVED, false);
  5357. ERR_FAIL_COND_V(p_expression.kind == DataType::UNRESOLVED, false);
  5358. if (p_container.kind == DataType::BUILTIN && p_expression.kind == DataType::BUILTIN) {
  5359. bool valid = p_container.builtin_type == p_expression.builtin_type;
  5360. if (p_allow_implicit_conversion) {
  5361. valid = valid || Variant::can_convert_strict(p_expression.builtin_type, p_container.builtin_type);
  5362. }
  5363. return valid;
  5364. }
  5365. if (p_container.kind == DataType::BUILTIN && p_container.builtin_type == Variant::OBJECT) {
  5366. // Object built-in is a special case, it's compatible with any object and with null
  5367. if (p_expression.kind == DataType::BUILTIN) {
  5368. return p_expression.builtin_type == Variant::NIL;
  5369. }
  5370. // If it's not a built-in, must be an object
  5371. return true;
  5372. }
  5373. if (p_container.kind == DataType::BUILTIN || (p_expression.kind == DataType::BUILTIN && p_expression.builtin_type != Variant::NIL)) {
  5374. // Can't mix built-ins with objects
  5375. return false;
  5376. }
  5377. // From now on everything is objects, check polymorphism
  5378. // The container must be the same class or a superclass of the expression
  5379. if (p_expression.kind == DataType::BUILTIN && p_expression.builtin_type == Variant::NIL) {
  5380. // Null can be assigned to object types
  5381. return true;
  5382. }
  5383. StringName expr_native;
  5384. Ref<Script> expr_script;
  5385. ClassNode *expr_class = nullptr;
  5386. switch (p_expression.kind) {
  5387. case DataType::NATIVE: {
  5388. if (p_container.kind != DataType::NATIVE) {
  5389. // Non-native type can't be a superclass of a native type
  5390. return false;
  5391. }
  5392. if (p_expression.is_meta_type) {
  5393. expr_native = GDScriptNativeClass::get_class_static();
  5394. } else {
  5395. expr_native = p_expression.native_type;
  5396. }
  5397. } break;
  5398. case DataType::SCRIPT:
  5399. case DataType::GDSCRIPT: {
  5400. if (p_container.kind == DataType::CLASS) {
  5401. // This cannot be resolved without cyclic dependencies, so just bail out
  5402. return false;
  5403. }
  5404. if (p_expression.is_meta_type) {
  5405. expr_native = p_expression.script_type->get_class_name();
  5406. } else {
  5407. expr_script = p_expression.script_type;
  5408. expr_native = expr_script->get_instance_base_type();
  5409. }
  5410. } break;
  5411. case DataType::CLASS: {
  5412. if (p_expression.is_meta_type) {
  5413. expr_native = GDScript::get_class_static();
  5414. } else {
  5415. expr_class = p_expression.class_type;
  5416. ClassNode *base = expr_class;
  5417. while (base->base_type.kind == DataType::CLASS) {
  5418. base = base->base_type.class_type;
  5419. }
  5420. expr_native = base->base_type.native_type;
  5421. expr_script = base->base_type.script_type;
  5422. }
  5423. } break;
  5424. case DataType::BUILTIN: // Already handled above
  5425. case DataType::UNRESOLVED: // Not allowed, see above
  5426. break;
  5427. }
  5428. // Some classes are prefixed with `_` internally
  5429. if (!ClassDB::class_exists(expr_native)) {
  5430. expr_native = "_" + expr_native;
  5431. }
  5432. switch (p_container.kind) {
  5433. case DataType::NATIVE: {
  5434. if (p_container.is_meta_type) {
  5435. return ClassDB::is_parent_class(expr_native, GDScriptNativeClass::get_class_static());
  5436. } else {
  5437. StringName container_native = ClassDB::class_exists(p_container.native_type) ? p_container.native_type : StringName("_" + p_container.native_type);
  5438. return ClassDB::is_parent_class(expr_native, container_native);
  5439. }
  5440. } break;
  5441. case DataType::SCRIPT:
  5442. case DataType::GDSCRIPT: {
  5443. if (p_container.is_meta_type) {
  5444. return ClassDB::is_parent_class(expr_native, GDScript::get_class_static());
  5445. }
  5446. if (expr_class == head && p_container.script_type->get_path() == self_path) {
  5447. // Special case: container is self script and expression is self
  5448. return true;
  5449. }
  5450. while (expr_script.is_valid()) {
  5451. if (expr_script == p_container.script_type) {
  5452. return true;
  5453. }
  5454. expr_script = expr_script->get_base_script();
  5455. }
  5456. return false;
  5457. } break;
  5458. case DataType::CLASS: {
  5459. if (p_container.is_meta_type) {
  5460. return ClassDB::is_parent_class(expr_native, GDScript::get_class_static());
  5461. }
  5462. if (p_container.class_type == head && expr_script.is_valid() && expr_script->get_path() == self_path) {
  5463. // Special case: container is self and expression is self script
  5464. return true;
  5465. }
  5466. while (expr_class) {
  5467. if (expr_class == p_container.class_type) {
  5468. return true;
  5469. }
  5470. expr_class = expr_class->base_type.class_type;
  5471. }
  5472. return false;
  5473. } break;
  5474. case DataType::BUILTIN: // Already handled above
  5475. case DataType::UNRESOLVED: // Not allowed, see above
  5476. break;
  5477. }
  5478. return false;
  5479. }
  5480. GDScriptParser::Node *GDScriptParser::_get_default_value_for_type(const DataType &p_type, int p_line) {
  5481. Node *result;
  5482. if (p_type.has_type && p_type.kind == DataType::BUILTIN && p_type.builtin_type != Variant::NIL && p_type.builtin_type != Variant::OBJECT) {
  5483. if (p_type.builtin_type == Variant::ARRAY) {
  5484. result = alloc_node<ArrayNode>();
  5485. } else if (p_type.builtin_type == Variant::DICTIONARY) {
  5486. result = alloc_node<DictionaryNode>();
  5487. } else {
  5488. ConstantNode *c = alloc_node<ConstantNode>();
  5489. Variant::CallError err;
  5490. c->value = Variant::construct(p_type.builtin_type, nullptr, 0, err);
  5491. result = c;
  5492. }
  5493. } else {
  5494. ConstantNode *c = alloc_node<ConstantNode>();
  5495. c->value = Variant();
  5496. result = c;
  5497. }
  5498. result->line = p_line;
  5499. return result;
  5500. }
  5501. GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
  5502. #ifdef DEBUG_ENABLED
  5503. if (p_node->get_datatype().has_type && p_node->type != Node::TYPE_ARRAY && p_node->type != Node::TYPE_DICTIONARY) {
  5504. #else
  5505. if (p_node->get_datatype().has_type) {
  5506. #endif
  5507. return p_node->get_datatype();
  5508. }
  5509. DataType node_type;
  5510. switch (p_node->type) {
  5511. case Node::TYPE_CONSTANT: {
  5512. node_type = _type_from_variant(static_cast<ConstantNode *>(p_node)->value);
  5513. } break;
  5514. case Node::TYPE_TYPE: {
  5515. TypeNode *tn = static_cast<TypeNode *>(p_node);
  5516. node_type.has_type = true;
  5517. node_type.is_meta_type = true;
  5518. node_type.kind = DataType::BUILTIN;
  5519. node_type.builtin_type = tn->vtype;
  5520. } break;
  5521. case Node::TYPE_ARRAY: {
  5522. node_type.has_type = true;
  5523. node_type.kind = DataType::BUILTIN;
  5524. node_type.builtin_type = Variant::ARRAY;
  5525. #ifdef DEBUG_ENABLED
  5526. // Check stuff inside the array
  5527. ArrayNode *an = static_cast<ArrayNode *>(p_node);
  5528. for (int i = 0; i < an->elements.size(); i++) {
  5529. _reduce_node_type(an->elements[i]);
  5530. }
  5531. #endif // DEBUG_ENABLED
  5532. } break;
  5533. case Node::TYPE_DICTIONARY: {
  5534. node_type.has_type = true;
  5535. node_type.kind = DataType::BUILTIN;
  5536. node_type.builtin_type = Variant::DICTIONARY;
  5537. #ifdef DEBUG_ENABLED
  5538. // Check stuff inside the dictionarty
  5539. DictionaryNode *dn = static_cast<DictionaryNode *>(p_node);
  5540. for (int i = 0; i < dn->elements.size(); i++) {
  5541. _reduce_node_type(dn->elements[i].key);
  5542. _reduce_node_type(dn->elements[i].value);
  5543. }
  5544. #endif // DEBUG_ENABLED
  5545. } break;
  5546. case Node::TYPE_SELF: {
  5547. node_type.has_type = true;
  5548. node_type.kind = DataType::CLASS;
  5549. node_type.class_type = current_class;
  5550. node_type.is_constant = true;
  5551. } break;
  5552. case Node::TYPE_IDENTIFIER: {
  5553. IdentifierNode *id = static_cast<IdentifierNode *>(p_node);
  5554. if (id->declared_block) {
  5555. node_type = id->declared_block->variables[id->name]->get_datatype();
  5556. id->declared_block->variables[id->name]->usages += 1;
  5557. } else if (id->name == "#match_value") {
  5558. // It's a special id just for the match statetement, ignore
  5559. break;
  5560. } else if (current_function && current_function->arguments.find(id->name) >= 0) {
  5561. int idx = current_function->arguments.find(id->name);
  5562. node_type = current_function->argument_types[idx];
  5563. } else {
  5564. node_type = _reduce_identifier_type(nullptr, id->name, id->line, false);
  5565. }
  5566. } break;
  5567. case Node::TYPE_CAST: {
  5568. CastNode *cn = static_cast<CastNode *>(p_node);
  5569. DataType source_type = _reduce_node_type(cn->source_node);
  5570. cn->cast_type = _resolve_type(cn->cast_type, cn->line);
  5571. if (source_type.has_type) {
  5572. bool valid = false;
  5573. if (check_types) {
  5574. if (cn->cast_type.kind == DataType::BUILTIN && source_type.kind == DataType::BUILTIN) {
  5575. valid = Variant::can_convert(source_type.builtin_type, cn->cast_type.builtin_type);
  5576. }
  5577. if (cn->cast_type.kind != DataType::BUILTIN && source_type.kind != DataType::BUILTIN) {
  5578. valid = _is_type_compatible(cn->cast_type, source_type) || _is_type_compatible(source_type, cn->cast_type);
  5579. }
  5580. if (!valid) {
  5581. _set_error("Invalid cast. Cannot convert from \"" + source_type.to_string() +
  5582. "\" to \"" + cn->cast_type.to_string() + "\".",
  5583. cn->line);
  5584. return DataType();
  5585. }
  5586. }
  5587. } else {
  5588. #ifdef DEBUG_ENABLED
  5589. _add_warning(GDScriptWarning::UNSAFE_CAST, cn->line, cn->cast_type.to_string());
  5590. #endif // DEBUG_ENABLED
  5591. _mark_line_as_unsafe(cn->line);
  5592. }
  5593. node_type = cn->cast_type;
  5594. } break;
  5595. case Node::TYPE_OPERATOR: {
  5596. OperatorNode *op = static_cast<OperatorNode *>(p_node);
  5597. switch (op->op) {
  5598. case OperatorNode::OP_CALL:
  5599. case OperatorNode::OP_PARENT_CALL: {
  5600. node_type = _reduce_function_call_type(op);
  5601. } break;
  5602. case OperatorNode::OP_YIELD: {
  5603. if (op->arguments.size() == 2) {
  5604. DataType base_type = _reduce_node_type(op->arguments[0]);
  5605. DataType signal_type = _reduce_node_type(op->arguments[1]);
  5606. // TODO: Check if signal exists when it's a constant
  5607. if (base_type.has_type && base_type.kind == DataType::BUILTIN && base_type.builtin_type != Variant::NIL && base_type.builtin_type != Variant::OBJECT) {
  5608. _set_error("The first argument of \"yield()\" must be an object.", op->line);
  5609. return DataType();
  5610. }
  5611. if (signal_type.has_type && (signal_type.kind != DataType::BUILTIN || signal_type.builtin_type != Variant::STRING)) {
  5612. _set_error("The second argument of \"yield()\" must be a string.", op->line);
  5613. return DataType();
  5614. }
  5615. }
  5616. // yield can return anything
  5617. node_type.has_type = false;
  5618. } break;
  5619. case OperatorNode::OP_IS:
  5620. case OperatorNode::OP_IS_BUILTIN: {
  5621. if (op->arguments.size() != 2) {
  5622. _set_error("Parser bug: binary operation without 2 arguments.", op->line);
  5623. ERR_FAIL_V(DataType());
  5624. }
  5625. DataType value_type = _reduce_node_type(op->arguments[0]);
  5626. DataType type_type = _reduce_node_type(op->arguments[1]);
  5627. if (check_types && type_type.has_type) {
  5628. if (!type_type.is_meta_type && (type_type.kind != DataType::NATIVE || !ClassDB::is_parent_class(type_type.native_type, "Script"))) {
  5629. _set_error("Invalid \"is\" test: the right operand isn't a type (neither a native type nor a script).", op->line);
  5630. return DataType();
  5631. }
  5632. type_type.is_meta_type = false; // Test the actual type
  5633. if (!_is_type_compatible(type_type, value_type) && !_is_type_compatible(value_type, type_type)) {
  5634. if (op->op == OperatorNode::OP_IS) {
  5635. _set_error("A value of type \"" + value_type.to_string() + "\" will never be an instance of \"" + type_type.to_string() + "\".", op->line);
  5636. } else {
  5637. _set_error("A value of type \"" + value_type.to_string() + "\" will never be of type \"" + type_type.to_string() + "\".", op->line);
  5638. }
  5639. return DataType();
  5640. }
  5641. }
  5642. node_type.has_type = true;
  5643. node_type.is_constant = true;
  5644. node_type.is_meta_type = false;
  5645. node_type.kind = DataType::BUILTIN;
  5646. node_type.builtin_type = Variant::BOOL;
  5647. } break;
  5648. // Unary operators
  5649. case OperatorNode::OP_NEG:
  5650. case OperatorNode::OP_POS:
  5651. case OperatorNode::OP_NOT:
  5652. case OperatorNode::OP_BIT_INVERT: {
  5653. DataType argument_type = _reduce_node_type(op->arguments[0]);
  5654. if (!argument_type.has_type) {
  5655. break;
  5656. }
  5657. Variant::Operator var_op = _get_variant_operation(op->op);
  5658. bool valid = false;
  5659. node_type = _get_operation_type(var_op, argument_type, argument_type, valid);
  5660. if (check_types && !valid) {
  5661. _set_error("Invalid operand type (\"" + argument_type.to_string() +
  5662. "\") to unary operator \"" + Variant::get_operator_name(var_op) + "\".",
  5663. op->line, op->column);
  5664. return DataType();
  5665. }
  5666. } break;
  5667. // Binary operators
  5668. case OperatorNode::OP_IN:
  5669. case OperatorNode::OP_EQUAL:
  5670. case OperatorNode::OP_NOT_EQUAL:
  5671. case OperatorNode::OP_LESS:
  5672. case OperatorNode::OP_LESS_EQUAL:
  5673. case OperatorNode::OP_GREATER:
  5674. case OperatorNode::OP_GREATER_EQUAL:
  5675. case OperatorNode::OP_AND:
  5676. case OperatorNode::OP_OR:
  5677. case OperatorNode::OP_ADD:
  5678. case OperatorNode::OP_SUB:
  5679. case OperatorNode::OP_MUL:
  5680. case OperatorNode::OP_DIV:
  5681. case OperatorNode::OP_MOD:
  5682. case OperatorNode::OP_SHIFT_LEFT:
  5683. case OperatorNode::OP_SHIFT_RIGHT:
  5684. case OperatorNode::OP_BIT_AND:
  5685. case OperatorNode::OP_BIT_OR:
  5686. case OperatorNode::OP_BIT_XOR: {
  5687. if (op->arguments.size() != 2) {
  5688. _set_error("Parser bug: binary operation without 2 arguments.", op->line);
  5689. ERR_FAIL_V(DataType());
  5690. }
  5691. DataType argument_a_type = _reduce_node_type(op->arguments[0]);
  5692. DataType argument_b_type = _reduce_node_type(op->arguments[1]);
  5693. if (!argument_a_type.has_type || !argument_b_type.has_type) {
  5694. _mark_line_as_unsafe(op->line);
  5695. break;
  5696. }
  5697. Variant::Operator var_op = _get_variant_operation(op->op);
  5698. bool valid = false;
  5699. node_type = _get_operation_type(var_op, argument_a_type, argument_b_type, valid);
  5700. if (check_types && !valid) {
  5701. _set_error("Invalid operand types (\"" + argument_a_type.to_string() + "\" and \"" +
  5702. argument_b_type.to_string() + "\") to operator \"" + Variant::get_operator_name(var_op) + "\".",
  5703. op->line, op->column);
  5704. return DataType();
  5705. }
  5706. #ifdef DEBUG_ENABLED
  5707. if (var_op == Variant::OP_DIVIDE && argument_a_type.kind == DataType::BUILTIN && argument_a_type.builtin_type == Variant::INT &&
  5708. argument_b_type.kind == DataType::BUILTIN && argument_b_type.builtin_type == Variant::INT) {
  5709. _add_warning(GDScriptWarning::INTEGER_DIVISION, op->line);
  5710. }
  5711. #endif // DEBUG_ENABLED
  5712. } break;
  5713. // Ternary operators
  5714. case OperatorNode::OP_TERNARY_IF: {
  5715. if (op->arguments.size() != 3) {
  5716. _set_error("Parser bug: ternary operation without 3 arguments.");
  5717. ERR_FAIL_V(DataType());
  5718. }
  5719. DataType true_type = _reduce_node_type(op->arguments[1]);
  5720. DataType false_type = _reduce_node_type(op->arguments[2]);
  5721. // Check arguments[0] errors.
  5722. _reduce_node_type(op->arguments[0]);
  5723. // If types are equal, then the expression is of the same type
  5724. // If they are compatible, return the broader type
  5725. if (true_type == false_type || _is_type_compatible(true_type, false_type)) {
  5726. node_type = true_type;
  5727. } else if (_is_type_compatible(false_type, true_type)) {
  5728. node_type = false_type;
  5729. } else {
  5730. #ifdef DEBUG_ENABLED
  5731. _add_warning(GDScriptWarning::INCOMPATIBLE_TERNARY, op->line);
  5732. #endif // DEBUG_ENABLED
  5733. }
  5734. } break;
  5735. // Assignment should never happen within an expression
  5736. case OperatorNode::OP_ASSIGN:
  5737. case OperatorNode::OP_ASSIGN_ADD:
  5738. case OperatorNode::OP_ASSIGN_SUB:
  5739. case OperatorNode::OP_ASSIGN_MUL:
  5740. case OperatorNode::OP_ASSIGN_DIV:
  5741. case OperatorNode::OP_ASSIGN_MOD:
  5742. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  5743. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  5744. case OperatorNode::OP_ASSIGN_BIT_AND:
  5745. case OperatorNode::OP_ASSIGN_BIT_OR:
  5746. case OperatorNode::OP_ASSIGN_BIT_XOR:
  5747. case OperatorNode::OP_INIT_ASSIGN: {
  5748. _set_error("Assignment inside an expression isn't allowed (parser bug?).", op->line);
  5749. return DataType();
  5750. } break;
  5751. case OperatorNode::OP_INDEX_NAMED: {
  5752. if (op->arguments.size() != 2) {
  5753. _set_error("Parser bug: named index with invalid arguments.", op->line);
  5754. ERR_FAIL_V(DataType());
  5755. }
  5756. if (op->arguments[1]->type != Node::TYPE_IDENTIFIER) {
  5757. _set_error("Parser bug: named index without identifier argument.", op->line);
  5758. ERR_FAIL_V(DataType());
  5759. }
  5760. DataType base_type = _reduce_node_type(op->arguments[0]);
  5761. IdentifierNode *member_id = static_cast<IdentifierNode *>(op->arguments[1]);
  5762. if (base_type.has_type) {
  5763. if (check_types && base_type.kind == DataType::BUILTIN) {
  5764. // Variant type, just test if it's possible
  5765. DataType result;
  5766. switch (base_type.builtin_type) {
  5767. case Variant::NIL:
  5768. case Variant::DICTIONARY: {
  5769. result.has_type = false;
  5770. } break;
  5771. default: {
  5772. Variant::CallError err;
  5773. Variant temp = Variant::construct(base_type.builtin_type, nullptr, 0, err);
  5774. bool valid = false;
  5775. Variant res = temp.get(member_id->name.operator String(), &valid);
  5776. if (valid) {
  5777. result = _type_from_variant(res);
  5778. } else if (check_types) {
  5779. _set_error("Can't get index \"" + String(member_id->name.operator String()) + "\" on base \"" +
  5780. base_type.to_string() + "\".",
  5781. op->line);
  5782. return DataType();
  5783. }
  5784. } break;
  5785. }
  5786. result.is_constant = false;
  5787. node_type = result;
  5788. } else {
  5789. node_type = _reduce_identifier_type(&base_type, member_id->name, op->line, true);
  5790. #ifdef DEBUG_ENABLED
  5791. if (!node_type.has_type) {
  5792. _mark_line_as_unsafe(op->line);
  5793. _add_warning(GDScriptWarning::UNSAFE_PROPERTY_ACCESS, op->line, member_id->name.operator String(), base_type.to_string());
  5794. }
  5795. #endif // DEBUG_ENABLED
  5796. }
  5797. } else {
  5798. _mark_line_as_unsafe(op->line);
  5799. }
  5800. if (error_set) {
  5801. return DataType();
  5802. }
  5803. } break;
  5804. case OperatorNode::OP_INDEX: {
  5805. if (op->arguments[1]->type == Node::TYPE_CONSTANT) {
  5806. ConstantNode *cn = static_cast<ConstantNode *>(op->arguments[1]);
  5807. if (cn->value.get_type() == Variant::STRING) {
  5808. // Treat this as named indexing
  5809. IdentifierNode *id = alloc_node<IdentifierNode>();
  5810. id->name = cn->value.operator StringName();
  5811. id->datatype = cn->datatype;
  5812. op->op = OperatorNode::OP_INDEX_NAMED;
  5813. op->arguments.write[1] = id;
  5814. return _reduce_node_type(op);
  5815. }
  5816. }
  5817. DataType base_type = _reduce_node_type(op->arguments[0]);
  5818. DataType index_type = _reduce_node_type(op->arguments[1]);
  5819. if (!base_type.has_type) {
  5820. _mark_line_as_unsafe(op->line);
  5821. break;
  5822. }
  5823. if (check_types && index_type.has_type) {
  5824. if (base_type.kind == DataType::BUILTIN) {
  5825. // Check if indexing is valid
  5826. bool error = index_type.kind != DataType::BUILTIN && base_type.builtin_type != Variant::DICTIONARY;
  5827. if (!error) {
  5828. switch (base_type.builtin_type) {
  5829. // Expect int or real as index
  5830. case Variant::POOL_BYTE_ARRAY:
  5831. case Variant::POOL_COLOR_ARRAY:
  5832. case Variant::POOL_INT_ARRAY:
  5833. case Variant::POOL_REAL_ARRAY:
  5834. case Variant::POOL_STRING_ARRAY:
  5835. case Variant::POOL_VECTOR2_ARRAY:
  5836. case Variant::POOL_VECTOR3_ARRAY:
  5837. case Variant::ARRAY:
  5838. case Variant::STRING: {
  5839. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::REAL;
  5840. } break;
  5841. // Expect String only
  5842. case Variant::RECT2:
  5843. case Variant::PLANE:
  5844. case Variant::QUAT:
  5845. case Variant::AABB:
  5846. case Variant::OBJECT: {
  5847. error = index_type.builtin_type != Variant::STRING;
  5848. } break;
  5849. // Expect String or number
  5850. case Variant::VECTOR2:
  5851. case Variant::VECTOR3:
  5852. case Variant::TRANSFORM2D:
  5853. case Variant::BASIS:
  5854. case Variant::TRANSFORM: {
  5855. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::REAL &&
  5856. index_type.builtin_type != Variant::STRING;
  5857. } break;
  5858. // Expect String or int
  5859. case Variant::COLOR: {
  5860. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::STRING;
  5861. } break;
  5862. default: {
  5863. }
  5864. }
  5865. }
  5866. if (error) {
  5867. _set_error("Invalid index type (" + index_type.to_string() + ") for base \"" + base_type.to_string() + "\".",
  5868. op->line);
  5869. return DataType();
  5870. }
  5871. if (op->arguments[1]->type == GDScriptParser::Node::TYPE_CONSTANT) {
  5872. ConstantNode *cn = static_cast<ConstantNode *>(op->arguments[1]);
  5873. // Index is a constant, just try it if possible
  5874. switch (base_type.builtin_type) {
  5875. // Arrays/string have variable indexing, can't test directly
  5876. case Variant::STRING:
  5877. case Variant::ARRAY:
  5878. case Variant::DICTIONARY:
  5879. case Variant::POOL_BYTE_ARRAY:
  5880. case Variant::POOL_COLOR_ARRAY:
  5881. case Variant::POOL_INT_ARRAY:
  5882. case Variant::POOL_REAL_ARRAY:
  5883. case Variant::POOL_STRING_ARRAY:
  5884. case Variant::POOL_VECTOR2_ARRAY:
  5885. case Variant::POOL_VECTOR3_ARRAY: {
  5886. break;
  5887. }
  5888. default: {
  5889. Variant::CallError err;
  5890. Variant temp = Variant::construct(base_type.builtin_type, nullptr, 0, err);
  5891. bool valid = false;
  5892. Variant res = temp.get(cn->value, &valid);
  5893. if (valid) {
  5894. node_type = _type_from_variant(res);
  5895. node_type.is_constant = false;
  5896. } else if (check_types) {
  5897. _set_error("Can't get index \"" + String(cn->value) + "\" on base \"" +
  5898. base_type.to_string() + "\".",
  5899. op->line);
  5900. return DataType();
  5901. }
  5902. } break;
  5903. }
  5904. } else {
  5905. _mark_line_as_unsafe(op->line);
  5906. }
  5907. } else if (!for_completion && (index_type.kind != DataType::BUILTIN || index_type.builtin_type != Variant::STRING)) {
  5908. _set_error("Only strings can be used as an index in the base type \"" + base_type.to_string() + "\".", op->line);
  5909. return DataType();
  5910. }
  5911. }
  5912. if (check_types && !node_type.has_type && base_type.kind == DataType::BUILTIN) {
  5913. // Can infer indexing type for some variant types
  5914. DataType result;
  5915. result.has_type = true;
  5916. result.kind = DataType::BUILTIN;
  5917. switch (base_type.builtin_type) {
  5918. // Can't index at all
  5919. case Variant::NIL:
  5920. case Variant::BOOL:
  5921. case Variant::INT:
  5922. case Variant::REAL:
  5923. case Variant::NODE_PATH:
  5924. case Variant::_RID: {
  5925. _set_error("Can't index on a value of type \"" + base_type.to_string() + "\".", op->line);
  5926. return DataType();
  5927. } break;
  5928. // Return int
  5929. case Variant::POOL_BYTE_ARRAY:
  5930. case Variant::POOL_INT_ARRAY: {
  5931. result.builtin_type = Variant::INT;
  5932. } break;
  5933. // Return real
  5934. case Variant::POOL_REAL_ARRAY:
  5935. case Variant::VECTOR2:
  5936. case Variant::VECTOR3:
  5937. case Variant::QUAT: {
  5938. result.builtin_type = Variant::REAL;
  5939. } break;
  5940. // Return color
  5941. case Variant::POOL_COLOR_ARRAY: {
  5942. result.builtin_type = Variant::COLOR;
  5943. } break;
  5944. // Return string
  5945. case Variant::POOL_STRING_ARRAY:
  5946. case Variant::STRING: {
  5947. result.builtin_type = Variant::STRING;
  5948. } break;
  5949. // Return Vector2
  5950. case Variant::POOL_VECTOR2_ARRAY:
  5951. case Variant::TRANSFORM2D:
  5952. case Variant::RECT2: {
  5953. result.builtin_type = Variant::VECTOR2;
  5954. } break;
  5955. // Return Vector3
  5956. case Variant::POOL_VECTOR3_ARRAY:
  5957. case Variant::AABB:
  5958. case Variant::BASIS: {
  5959. result.builtin_type = Variant::VECTOR3;
  5960. } break;
  5961. // Depends on the index
  5962. case Variant::TRANSFORM:
  5963. case Variant::PLANE:
  5964. case Variant::COLOR:
  5965. default: {
  5966. result.has_type = false;
  5967. } break;
  5968. }
  5969. node_type = result;
  5970. }
  5971. } break;
  5972. default: {
  5973. _set_error("Parser bug: unhandled operation.", op->line);
  5974. ERR_FAIL_V(DataType());
  5975. }
  5976. }
  5977. } break;
  5978. default: {
  5979. }
  5980. }
  5981. node_type = _resolve_type(node_type, p_node->line);
  5982. p_node->set_datatype(node_type);
  5983. return node_type;
  5984. }
  5985. bool GDScriptParser::_get_function_signature(DataType &p_base_type, const StringName &p_function, DataType &r_return_type, List<DataType> &r_arg_types, int &r_default_arg_count, bool &r_static, bool &r_vararg) const {
  5986. r_static = false;
  5987. r_default_arg_count = 0;
  5988. DataType original_type = p_base_type;
  5989. ClassNode *base = nullptr;
  5990. FunctionNode *callee = nullptr;
  5991. if (p_base_type.kind == DataType::CLASS) {
  5992. base = p_base_type.class_type;
  5993. }
  5994. // Look up the current file (parse tree)
  5995. while (!callee && base) {
  5996. for (int i = 0; i < base->static_functions.size(); i++) {
  5997. FunctionNode *func = base->static_functions[i];
  5998. if (p_function == func->name) {
  5999. r_static = true;
  6000. callee = func;
  6001. break;
  6002. }
  6003. }
  6004. if (!callee && !p_base_type.is_meta_type) {
  6005. for (int i = 0; i < base->functions.size(); i++) {
  6006. FunctionNode *func = base->functions[i];
  6007. if (p_function == func->name) {
  6008. callee = func;
  6009. break;
  6010. }
  6011. }
  6012. }
  6013. p_base_type = base->base_type;
  6014. if (p_base_type.kind == DataType::CLASS) {
  6015. base = p_base_type.class_type;
  6016. } else {
  6017. break;
  6018. }
  6019. }
  6020. if (callee) {
  6021. r_return_type = callee->get_datatype();
  6022. for (int i = 0; i < callee->argument_types.size(); i++) {
  6023. r_arg_types.push_back(callee->argument_types[i]);
  6024. }
  6025. r_default_arg_count = callee->default_values.size();
  6026. return true;
  6027. }
  6028. // Nothing in current file, check parent script
  6029. Ref<GDScript> base_gdscript;
  6030. Ref<Script> base_script;
  6031. StringName native;
  6032. if (p_base_type.kind == DataType::GDSCRIPT) {
  6033. base_gdscript = p_base_type.script_type;
  6034. if (base_gdscript.is_null() || !base_gdscript->is_valid()) {
  6035. // GDScript wasn't properly compíled, don't bother trying
  6036. return false;
  6037. }
  6038. } else if (p_base_type.kind == DataType::SCRIPT) {
  6039. base_script = p_base_type.script_type;
  6040. } else if (p_base_type.kind == DataType::NATIVE) {
  6041. native = p_base_type.native_type;
  6042. }
  6043. while (base_gdscript.is_valid()) {
  6044. native = base_gdscript->get_instance_base_type();
  6045. Map<StringName, GDScriptFunction *> funcs = base_gdscript->get_member_functions();
  6046. if (funcs.has(p_function)) {
  6047. GDScriptFunction *f = funcs[p_function];
  6048. r_static = f->is_static();
  6049. r_default_arg_count = f->get_default_argument_count();
  6050. r_return_type = _type_from_gdtype(f->get_return_type());
  6051. for (int i = 0; i < f->get_argument_count(); i++) {
  6052. r_arg_types.push_back(_type_from_gdtype(f->get_argument_type(i)));
  6053. }
  6054. return true;
  6055. }
  6056. base_gdscript = base_gdscript->get_base_script();
  6057. }
  6058. while (base_script.is_valid()) {
  6059. native = base_script->get_instance_base_type();
  6060. MethodInfo mi = base_script->get_method_info(p_function);
  6061. if (!(mi == MethodInfo())) {
  6062. r_return_type = _type_from_property(mi.return_val, false);
  6063. r_default_arg_count = mi.default_arguments.size();
  6064. for (List<PropertyInfo>::Element *E = mi.arguments.front(); E; E = E->next()) {
  6065. r_arg_types.push_back(_type_from_property(E->get()));
  6066. }
  6067. return true;
  6068. }
  6069. base_script = base_script->get_base_script();
  6070. }
  6071. if (native == StringName()) {
  6072. // Empty native class, might happen in some Script implementations
  6073. // Just ignore it
  6074. return false;
  6075. }
  6076. // Only native remains
  6077. if (!ClassDB::class_exists(native)) {
  6078. native = "_" + native.operator String();
  6079. }
  6080. if (!ClassDB::class_exists(native)) {
  6081. if (!check_types) {
  6082. return false;
  6083. }
  6084. ERR_FAIL_V_MSG(false, "Parser bug: Class '" + String(native) + "' not found.");
  6085. }
  6086. MethodBind *method = ClassDB::get_method(native, p_function);
  6087. if (!method) {
  6088. // Try virtual methods
  6089. List<MethodInfo> virtuals;
  6090. ClassDB::get_virtual_methods(native, &virtuals);
  6091. for (const List<MethodInfo>::Element *E = virtuals.front(); E; E = E->next()) {
  6092. const MethodInfo &mi = E->get();
  6093. if (mi.name == p_function) {
  6094. r_default_arg_count = mi.default_arguments.size();
  6095. for (const List<PropertyInfo>::Element *pi = mi.arguments.front(); pi; pi = pi->next()) {
  6096. r_arg_types.push_back(_type_from_property(pi->get()));
  6097. }
  6098. r_return_type = _type_from_property(mi.return_val, false);
  6099. r_vararg = mi.flags & METHOD_FLAG_VARARG;
  6100. return true;
  6101. }
  6102. }
  6103. // If the base is a script, it might be trying to access members of the Script class itself
  6104. if (original_type.is_meta_type && !(p_function == "new") && (original_type.kind == DataType::SCRIPT || original_type.kind == DataType::GDSCRIPT)) {
  6105. method = ClassDB::get_method(original_type.script_type->get_class_name(), p_function);
  6106. if (method) {
  6107. r_static = true;
  6108. } else {
  6109. // Try virtual methods of the script type
  6110. virtuals.clear();
  6111. ClassDB::get_virtual_methods(original_type.script_type->get_class_name(), &virtuals);
  6112. for (const List<MethodInfo>::Element *E = virtuals.front(); E; E = E->next()) {
  6113. const MethodInfo &mi = E->get();
  6114. if (mi.name == p_function) {
  6115. r_default_arg_count = mi.default_arguments.size();
  6116. for (const List<PropertyInfo>::Element *pi = mi.arguments.front(); pi; pi = pi->next()) {
  6117. r_arg_types.push_back(_type_from_property(pi->get()));
  6118. }
  6119. r_return_type = _type_from_property(mi.return_val, false);
  6120. r_static = true;
  6121. r_vararg = mi.flags & METHOD_FLAG_VARARG;
  6122. return true;
  6123. }
  6124. }
  6125. return false;
  6126. }
  6127. } else {
  6128. return false;
  6129. }
  6130. }
  6131. r_default_arg_count = method->get_default_argument_count();
  6132. if (method->get_name() == "get_script") {
  6133. r_return_type = DataType(); // Variant for now and let runtime decide.
  6134. } else {
  6135. r_return_type = _type_from_property(method->get_return_info(), false);
  6136. }
  6137. r_vararg = method->is_vararg();
  6138. for (int i = 0; i < method->get_argument_count(); i++) {
  6139. r_arg_types.push_back(_type_from_property(method->get_argument_info(i)));
  6140. }
  6141. return true;
  6142. }
  6143. GDScriptParser::DataType GDScriptParser::_reduce_function_call_type(const OperatorNode *p_call) {
  6144. if (p_call->arguments.size() < 1) {
  6145. _set_error("Parser bug: function call without enough arguments.", p_call->line);
  6146. ERR_FAIL_V(DataType());
  6147. }
  6148. DataType return_type;
  6149. List<DataType> arg_types;
  6150. int default_args_count = 0;
  6151. String callee_name;
  6152. bool is_vararg = false;
  6153. #ifdef DEBUG_ENABLED
  6154. int arg_count = p_call->arguments.size();
  6155. #endif
  6156. switch (p_call->arguments[0]->type) {
  6157. case GDScriptParser::Node::TYPE_TYPE: {
  6158. // Built-in constructor, special case
  6159. TypeNode *tn = static_cast<TypeNode *>(p_call->arguments[0]);
  6160. Vector<DataType> par_types;
  6161. par_types.resize(p_call->arguments.size() - 1);
  6162. for (int i = 1; i < p_call->arguments.size(); i++) {
  6163. par_types.write[i - 1] = _reduce_node_type(p_call->arguments[i]);
  6164. }
  6165. if (error_set) {
  6166. return DataType();
  6167. }
  6168. // Special case: check copy constructor. Those are defined implicitly in Variant.
  6169. if (par_types.size() == 1) {
  6170. if (!par_types[0].has_type || (par_types[0].kind == DataType::BUILTIN && par_types[0].builtin_type == tn->vtype)) {
  6171. DataType result;
  6172. result.has_type = true;
  6173. result.kind = DataType::BUILTIN;
  6174. result.builtin_type = tn->vtype;
  6175. return result;
  6176. }
  6177. }
  6178. bool match = false;
  6179. List<MethodInfo> constructors;
  6180. Variant::get_constructor_list(tn->vtype, &constructors);
  6181. PropertyInfo return_type2;
  6182. for (List<MethodInfo>::Element *E = constructors.front(); E; E = E->next()) {
  6183. MethodInfo &mi = E->get();
  6184. if (p_call->arguments.size() - 1 < mi.arguments.size() - mi.default_arguments.size()) {
  6185. continue;
  6186. }
  6187. if (p_call->arguments.size() - 1 > mi.arguments.size()) {
  6188. continue;
  6189. }
  6190. bool types_match = true;
  6191. for (int i = 0; i < par_types.size(); i++) {
  6192. DataType arg_type;
  6193. if (mi.arguments[i].type != Variant::NIL) {
  6194. arg_type.has_type = true;
  6195. arg_type.kind = mi.arguments[i].type == Variant::OBJECT ? DataType::NATIVE : DataType::BUILTIN;
  6196. arg_type.builtin_type = mi.arguments[i].type;
  6197. arg_type.native_type = mi.arguments[i].class_name;
  6198. }
  6199. if (!_is_type_compatible(arg_type, par_types[i], true)) {
  6200. types_match = false;
  6201. break;
  6202. } else {
  6203. #ifdef DEBUG_ENABLED
  6204. if (arg_type.kind == DataType::BUILTIN && arg_type.builtin_type == Variant::INT && par_types[i].kind == DataType::BUILTIN && par_types[i].builtin_type == Variant::REAL) {
  6205. _add_warning(GDScriptWarning::NARROWING_CONVERSION, p_call->line, Variant::get_type_name(tn->vtype));
  6206. }
  6207. if (par_types[i].may_yield && p_call->arguments[i + 1]->type == Node::TYPE_OPERATOR) {
  6208. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, p_call->line, _find_function_name(static_cast<OperatorNode *>(p_call->arguments[i + 1])));
  6209. }
  6210. #endif // DEBUG_ENABLED
  6211. }
  6212. }
  6213. if (types_match) {
  6214. match = true;
  6215. return_type2 = mi.return_val;
  6216. break;
  6217. }
  6218. }
  6219. if (match) {
  6220. return _type_from_property(return_type2, false);
  6221. } else if (check_types) {
  6222. String err = "No constructor of '";
  6223. err += Variant::get_type_name(tn->vtype);
  6224. err += "' matches the signature '";
  6225. err += Variant::get_type_name(tn->vtype) + "(";
  6226. for (int i = 0; i < par_types.size(); i++) {
  6227. if (i > 0) {
  6228. err += ", ";
  6229. }
  6230. err += par_types[i].to_string();
  6231. }
  6232. err += ")'.";
  6233. _set_error(err, p_call->line, p_call->column);
  6234. return DataType();
  6235. }
  6236. return DataType();
  6237. } break;
  6238. case GDScriptParser::Node::TYPE_BUILT_IN_FUNCTION: {
  6239. BuiltInFunctionNode *func = static_cast<BuiltInFunctionNode *>(p_call->arguments[0]);
  6240. MethodInfo mi = GDScriptFunctions::get_info(func->function);
  6241. return_type = _type_from_property(mi.return_val, false);
  6242. // Check all arguments beforehand to solve warnings
  6243. for (int i = 1; i < p_call->arguments.size(); i++) {
  6244. _reduce_node_type(p_call->arguments[i]);
  6245. }
  6246. // Check arguments
  6247. is_vararg = mi.flags & METHOD_FLAG_VARARG;
  6248. default_args_count = mi.default_arguments.size();
  6249. callee_name = mi.name;
  6250. #ifdef DEBUG_ENABLED
  6251. arg_count -= 1;
  6252. #endif
  6253. // Check each argument type
  6254. for (List<PropertyInfo>::Element *E = mi.arguments.front(); E; E = E->next()) {
  6255. arg_types.push_back(_type_from_property(E->get()));
  6256. }
  6257. } break;
  6258. default: {
  6259. if (p_call->op == OperatorNode::OP_CALL && p_call->arguments.size() < 2) {
  6260. _set_error("Parser bug: self method call without enough arguments.", p_call->line);
  6261. ERR_FAIL_V(DataType());
  6262. }
  6263. int arg_id = p_call->op == OperatorNode::OP_CALL ? 1 : 0;
  6264. if (p_call->arguments[arg_id]->type != Node::TYPE_IDENTIFIER) {
  6265. _set_error("Parser bug: invalid function call argument.", p_call->line);
  6266. ERR_FAIL_V(DataType());
  6267. }
  6268. // Check all arguments beforehand to solve warnings
  6269. for (int i = arg_id + 1; i < p_call->arguments.size(); i++) {
  6270. _reduce_node_type(p_call->arguments[i]);
  6271. }
  6272. IdentifierNode *func_id = static_cast<IdentifierNode *>(p_call->arguments[arg_id]);
  6273. callee_name = func_id->name;
  6274. #ifdef DEBUG_ENABLED
  6275. arg_count -= 1 + arg_id;
  6276. #endif
  6277. DataType base_type;
  6278. if (p_call->op == OperatorNode::OP_PARENT_CALL) {
  6279. base_type = current_class->base_type;
  6280. } else {
  6281. base_type = _reduce_node_type(p_call->arguments[0]);
  6282. }
  6283. if (!base_type.has_type || (base_type.kind == DataType::BUILTIN && base_type.builtin_type == Variant::NIL)) {
  6284. _mark_line_as_unsafe(p_call->line);
  6285. return DataType();
  6286. }
  6287. if (base_type.kind == DataType::BUILTIN) {
  6288. Variant::CallError err;
  6289. Variant tmp = Variant::construct(base_type.builtin_type, nullptr, 0, err);
  6290. if (check_types) {
  6291. if (!tmp.has_method(callee_name)) {
  6292. _set_error("The method \"" + callee_name + "\" isn't declared on base \"" + base_type.to_string() + "\".", p_call->line);
  6293. return DataType();
  6294. }
  6295. default_args_count = Variant::get_method_default_arguments(base_type.builtin_type, callee_name).size();
  6296. const Vector<Variant::Type> &var_arg_types = Variant::get_method_argument_types(base_type.builtin_type, callee_name);
  6297. for (int i = 0; i < var_arg_types.size(); i++) {
  6298. DataType argtype;
  6299. if (var_arg_types[i] != Variant::NIL) {
  6300. argtype.has_type = true;
  6301. argtype.kind = DataType::BUILTIN;
  6302. argtype.builtin_type = var_arg_types[i];
  6303. }
  6304. arg_types.push_back(argtype);
  6305. }
  6306. }
  6307. bool rets = false;
  6308. return_type.has_type = true;
  6309. return_type.kind = DataType::BUILTIN;
  6310. return_type.builtin_type = Variant::get_method_return_type(base_type.builtin_type, callee_name, &rets);
  6311. // If the method returns, but it might return any type, (Variant::NIL), pretend we don't know the type.
  6312. // At least make sure we know that it returns
  6313. if (rets && return_type.builtin_type == Variant::NIL) {
  6314. return_type.has_type = false;
  6315. }
  6316. break;
  6317. }
  6318. DataType original_type = base_type;
  6319. bool is_initializer = callee_name == "new";
  6320. bool is_get_script = p_call->arguments[0]->type == Node::TYPE_SELF && callee_name == "get_script";
  6321. bool is_static = false;
  6322. bool valid = false;
  6323. if (is_initializer && original_type.is_meta_type) {
  6324. // Try to check it as initializer
  6325. base_type = original_type;
  6326. callee_name = "_init";
  6327. base_type.is_meta_type = false;
  6328. valid = _get_function_signature(base_type, callee_name, return_type, arg_types,
  6329. default_args_count, is_static, is_vararg);
  6330. return_type = original_type;
  6331. return_type.is_meta_type = false;
  6332. valid = true; // There's always an initializer, we can assume this is true
  6333. }
  6334. if (is_get_script) {
  6335. // get_script() can be considered a meta-type.
  6336. return_type.kind = DataType::CLASS;
  6337. return_type.class_type = static_cast<ClassNode *>(head);
  6338. return_type.is_meta_type = true;
  6339. valid = true;
  6340. }
  6341. if (!valid) {
  6342. base_type = original_type;
  6343. return_type = DataType();
  6344. valid = _get_function_signature(base_type, callee_name, return_type, arg_types,
  6345. default_args_count, is_static, is_vararg);
  6346. }
  6347. if (!valid) {
  6348. #ifdef DEBUG_ENABLED
  6349. if (p_call->arguments[0]->type == Node::TYPE_SELF) {
  6350. _set_error("The method \"" + callee_name + "\" isn't declared in the current class.", p_call->line);
  6351. return DataType();
  6352. }
  6353. DataType tmp_type;
  6354. valid = _get_member_type(original_type, func_id->name, tmp_type);
  6355. if (valid) {
  6356. if (tmp_type.is_constant) {
  6357. _add_warning(GDScriptWarning::CONSTANT_USED_AS_FUNCTION, p_call->line, callee_name, original_type.to_string());
  6358. } else {
  6359. _add_warning(GDScriptWarning::PROPERTY_USED_AS_FUNCTION, p_call->line, callee_name, original_type.to_string());
  6360. }
  6361. }
  6362. _add_warning(GDScriptWarning::UNSAFE_METHOD_ACCESS, p_call->line, callee_name, original_type.to_string());
  6363. _mark_line_as_unsafe(p_call->line);
  6364. #endif // DEBUG_ENABLED
  6365. return DataType();
  6366. }
  6367. #ifdef DEBUG_ENABLED
  6368. if (current_function && !for_completion && !is_static && p_call->arguments[0]->type == Node::TYPE_SELF && current_function->_static) {
  6369. _set_error("Can't call non-static function from a static function.", p_call->line);
  6370. return DataType();
  6371. }
  6372. if (check_types && !is_static && !is_initializer && base_type.is_meta_type) {
  6373. _set_error("Non-static function \"" + String(callee_name) + "\" can only be called from an instance.", p_call->line);
  6374. return DataType();
  6375. }
  6376. // Check signal emission for warnings
  6377. if (callee_name == "emit_signal" && p_call->op == OperatorNode::OP_CALL && p_call->arguments[0]->type == Node::TYPE_SELF && p_call->arguments.size() >= 3 && p_call->arguments[2]->type == Node::TYPE_CONSTANT) {
  6378. ConstantNode *sig = static_cast<ConstantNode *>(p_call->arguments[2]);
  6379. String emitted = sig->value.get_type() == Variant::STRING ? sig->value.operator String() : "";
  6380. for (int i = 0; i < current_class->_signals.size(); i++) {
  6381. if (current_class->_signals[i].name == emitted) {
  6382. current_class->_signals.write[i].emissions += 1;
  6383. break;
  6384. }
  6385. }
  6386. }
  6387. #endif // DEBUG_ENABLED
  6388. } break;
  6389. }
  6390. #ifdef DEBUG_ENABLED
  6391. if (!check_types) {
  6392. return return_type;
  6393. }
  6394. if (arg_count < arg_types.size() - default_args_count) {
  6395. _set_error("Too few arguments for \"" + callee_name + "()\" call. Expected at least " + itos(arg_types.size() - default_args_count) + ".", p_call->line);
  6396. return return_type;
  6397. }
  6398. if (!is_vararg && arg_count > arg_types.size()) {
  6399. _set_error("Too many arguments for \"" + callee_name + "()\" call. Expected at most " + itos(arg_types.size()) + ".", p_call->line);
  6400. return return_type;
  6401. }
  6402. int arg_diff = p_call->arguments.size() - arg_count;
  6403. for (int i = arg_diff; i < p_call->arguments.size(); i++) {
  6404. DataType par_type = _reduce_node_type(p_call->arguments[i]);
  6405. if ((i - arg_diff) >= arg_types.size()) {
  6406. continue;
  6407. }
  6408. DataType arg_type = arg_types[i - arg_diff];
  6409. if (!par_type.has_type) {
  6410. _mark_line_as_unsafe(p_call->line);
  6411. if (par_type.may_yield && p_call->arguments[i]->type == Node::TYPE_OPERATOR) {
  6412. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, p_call->line, _find_function_name(static_cast<OperatorNode *>(p_call->arguments[i])));
  6413. }
  6414. } else if (!_is_type_compatible(arg_types[i - arg_diff], par_type, true)) {
  6415. // Supertypes are acceptable for dynamic compliance
  6416. if (!_is_type_compatible(par_type, arg_types[i - arg_diff])) {
  6417. _set_error("At \"" + callee_name + "()\" call, argument " + itos(i - arg_diff + 1) + ". The passed argument's type (" +
  6418. par_type.to_string() + ") doesn't match the function's expected argument type (" +
  6419. arg_types[i - arg_diff].to_string() + ").",
  6420. p_call->line);
  6421. return DataType();
  6422. } else {
  6423. _mark_line_as_unsafe(p_call->line);
  6424. }
  6425. } else {
  6426. if (arg_type.kind == DataType::BUILTIN && arg_type.builtin_type == Variant::INT && par_type.kind == DataType::BUILTIN && par_type.builtin_type == Variant::REAL) {
  6427. _add_warning(GDScriptWarning::NARROWING_CONVERSION, p_call->line, callee_name);
  6428. }
  6429. }
  6430. }
  6431. #endif // DEBUG_ENABLED
  6432. return return_type;
  6433. }
  6434. bool GDScriptParser::_get_member_type(const DataType &p_base_type, const StringName &p_member, DataType &r_member_type, bool *r_is_const) const {
  6435. DataType base_type = p_base_type;
  6436. // Check classes in current file
  6437. ClassNode *base = nullptr;
  6438. if (base_type.kind == DataType::CLASS) {
  6439. base = base_type.class_type;
  6440. }
  6441. while (base) {
  6442. if (base->constant_expressions.has(p_member)) {
  6443. if (r_is_const) {
  6444. *r_is_const = true;
  6445. }
  6446. r_member_type = base->constant_expressions[p_member].expression->get_datatype();
  6447. return true;
  6448. }
  6449. if (!base_type.is_meta_type) {
  6450. for (int i = 0; i < base->variables.size(); i++) {
  6451. if (base->variables[i].identifier == p_member) {
  6452. r_member_type = base->variables[i].data_type;
  6453. base->variables.write[i].usages += 1;
  6454. return true;
  6455. }
  6456. }
  6457. } else {
  6458. for (int i = 0; i < base->subclasses.size(); i++) {
  6459. ClassNode *c = base->subclasses[i];
  6460. if (c->name == p_member) {
  6461. DataType class_type;
  6462. class_type.has_type = true;
  6463. class_type.is_constant = true;
  6464. class_type.is_meta_type = true;
  6465. class_type.kind = DataType::CLASS;
  6466. class_type.class_type = c;
  6467. r_member_type = class_type;
  6468. return true;
  6469. }
  6470. }
  6471. }
  6472. base_type = base->base_type;
  6473. if (base_type.kind == DataType::CLASS) {
  6474. base = base_type.class_type;
  6475. } else {
  6476. break;
  6477. }
  6478. }
  6479. Ref<GDScript> gds;
  6480. if (base_type.kind == DataType::GDSCRIPT) {
  6481. gds = base_type.script_type;
  6482. if (gds.is_null() || !gds->is_valid()) {
  6483. // GDScript wasn't properly compíled, don't bother trying
  6484. return false;
  6485. }
  6486. }
  6487. Ref<Script> scr;
  6488. if (base_type.kind == DataType::SCRIPT) {
  6489. scr = base_type.script_type;
  6490. }
  6491. StringName native;
  6492. if (base_type.kind == DataType::NATIVE) {
  6493. native = base_type.native_type;
  6494. }
  6495. // Check GDScripts
  6496. while (gds.is_valid()) {
  6497. if (gds->get_constants().has(p_member)) {
  6498. Variant c = gds->get_constants()[p_member];
  6499. r_member_type = _type_from_variant(c);
  6500. return true;
  6501. }
  6502. if (!base_type.is_meta_type) {
  6503. if (gds->get_members().has(p_member)) {
  6504. r_member_type = _type_from_gdtype(gds->get_member_type(p_member));
  6505. return true;
  6506. }
  6507. }
  6508. native = gds->get_instance_base_type();
  6509. if (gds->get_base_script().is_valid()) {
  6510. gds = gds->get_base_script();
  6511. scr = gds->get_base_script();
  6512. bool is_meta = base_type.is_meta_type;
  6513. base_type = _type_from_variant(scr.operator Variant());
  6514. base_type.is_meta_type = is_meta;
  6515. } else {
  6516. break;
  6517. }
  6518. }
  6519. #define IS_USAGE_MEMBER(m_usage) (!(m_usage & (PROPERTY_USAGE_GROUP | PROPERTY_USAGE_CATEGORY)))
  6520. // Check other script types
  6521. while (scr.is_valid()) {
  6522. Map<StringName, Variant> constants;
  6523. scr->get_constants(&constants);
  6524. if (constants.has(p_member)) {
  6525. r_member_type = _type_from_variant(constants[p_member]);
  6526. return true;
  6527. }
  6528. List<PropertyInfo> properties;
  6529. scr->get_script_property_list(&properties);
  6530. for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
  6531. if (E->get().name == p_member && IS_USAGE_MEMBER(E->get().usage)) {
  6532. r_member_type = _type_from_property(E->get());
  6533. return true;
  6534. }
  6535. }
  6536. base_type = _type_from_variant(scr.operator Variant());
  6537. native = scr->get_instance_base_type();
  6538. scr = scr->get_base_script();
  6539. }
  6540. if (native == StringName()) {
  6541. // Empty native class, might happen in some Script implementations
  6542. // Just ignore it
  6543. return false;
  6544. }
  6545. // Check ClassDB
  6546. if (!ClassDB::class_exists(native)) {
  6547. native = "_" + native.operator String();
  6548. }
  6549. if (!ClassDB::class_exists(native)) {
  6550. if (!check_types) {
  6551. return false;
  6552. }
  6553. ERR_FAIL_V_MSG(false, "Parser bug: Class \"" + String(native) + "\" not found.");
  6554. }
  6555. bool valid = false;
  6556. ClassDB::get_integer_constant(native, p_member, &valid);
  6557. if (valid) {
  6558. DataType ct;
  6559. ct.has_type = true;
  6560. ct.is_constant = true;
  6561. ct.kind = DataType::BUILTIN;
  6562. ct.builtin_type = Variant::INT;
  6563. r_member_type = ct;
  6564. return true;
  6565. }
  6566. if (!base_type.is_meta_type) {
  6567. List<PropertyInfo> properties;
  6568. ClassDB::get_property_list(native, &properties);
  6569. for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
  6570. if (E->get().name == p_member && IS_USAGE_MEMBER(E->get().usage)) {
  6571. // Check if a getter exists
  6572. StringName getter_name = ClassDB::get_property_getter(native, p_member);
  6573. if (getter_name != StringName()) {
  6574. // Use the getter return type
  6575. MethodBind *getter_method = ClassDB::get_method(native, getter_name);
  6576. if (getter_method) {
  6577. r_member_type = _type_from_property(getter_method->get_return_info());
  6578. } else {
  6579. r_member_type = DataType();
  6580. }
  6581. } else {
  6582. r_member_type = _type_from_property(E->get());
  6583. }
  6584. return true;
  6585. }
  6586. }
  6587. }
  6588. // If the base is a script, it might be trying to access members of the Script class itself
  6589. if (p_base_type.is_meta_type && (p_base_type.kind == DataType::SCRIPT || p_base_type.kind == DataType::GDSCRIPT)) {
  6590. native = p_base_type.script_type->get_class_name();
  6591. ClassDB::get_integer_constant(native, p_member, &valid);
  6592. if (valid) {
  6593. DataType ct;
  6594. ct.has_type = true;
  6595. ct.is_constant = true;
  6596. ct.kind = DataType::BUILTIN;
  6597. ct.builtin_type = Variant::INT;
  6598. r_member_type = ct;
  6599. return true;
  6600. }
  6601. List<PropertyInfo> properties;
  6602. ClassDB::get_property_list(native, &properties);
  6603. for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
  6604. if (E->get().name == p_member && IS_USAGE_MEMBER(E->get().usage)) {
  6605. // Check if a getter exists
  6606. StringName getter_name = ClassDB::get_property_getter(native, p_member);
  6607. if (getter_name != StringName()) {
  6608. // Use the getter return type
  6609. MethodBind *getter_method = ClassDB::get_method(native, getter_name);
  6610. if (getter_method) {
  6611. r_member_type = _type_from_property(getter_method->get_return_info());
  6612. } else {
  6613. r_member_type = DataType();
  6614. }
  6615. } else {
  6616. r_member_type = _type_from_property(E->get());
  6617. }
  6618. return true;
  6619. }
  6620. }
  6621. }
  6622. #undef IS_USAGE_MEMBER
  6623. return false;
  6624. }
  6625. GDScriptParser::DataType GDScriptParser::_reduce_identifier_type(const DataType *p_base_type, const StringName &p_identifier, int p_line, bool p_is_indexing) {
  6626. if (p_base_type && !p_base_type->has_type) {
  6627. return DataType();
  6628. }
  6629. DataType base_type;
  6630. DataType member_type;
  6631. if (!p_base_type) {
  6632. base_type.has_type = true;
  6633. base_type.is_constant = true;
  6634. base_type.kind = DataType::CLASS;
  6635. base_type.class_type = current_class;
  6636. } else {
  6637. base_type = DataType(*p_base_type);
  6638. }
  6639. bool is_const = false;
  6640. if (_get_member_type(base_type, p_identifier, member_type, &is_const)) {
  6641. if (!p_base_type && current_function && current_function->_static && !is_const) {
  6642. _set_error("Can't access member variable (\"" + p_identifier.operator String() + "\") from a static function.", p_line);
  6643. return DataType();
  6644. }
  6645. return member_type;
  6646. }
  6647. if (p_is_indexing) {
  6648. // Don't look for globals since this is an indexed identifier
  6649. return DataType();
  6650. }
  6651. if (!p_base_type) {
  6652. // Possibly this is a global, check before failing
  6653. if (ClassDB::class_exists(p_identifier) || ClassDB::class_exists("_" + p_identifier.operator String())) {
  6654. DataType result;
  6655. result.has_type = true;
  6656. result.is_constant = true;
  6657. result.is_meta_type = true;
  6658. if (Engine::get_singleton()->has_singleton(p_identifier) || Engine::get_singleton()->has_singleton("_" + p_identifier.operator String())) {
  6659. result.is_meta_type = false;
  6660. }
  6661. result.kind = DataType::NATIVE;
  6662. result.native_type = p_identifier;
  6663. return result;
  6664. }
  6665. ClassNode *outer_class = current_class;
  6666. while (outer_class) {
  6667. if (outer_class->name == p_identifier) {
  6668. DataType result;
  6669. result.has_type = true;
  6670. result.is_constant = true;
  6671. result.is_meta_type = true;
  6672. result.kind = DataType::CLASS;
  6673. result.class_type = outer_class;
  6674. return result;
  6675. }
  6676. if (outer_class->constant_expressions.has(p_identifier)) {
  6677. return outer_class->constant_expressions[p_identifier].type;
  6678. }
  6679. for (int i = 0; i < outer_class->subclasses.size(); i++) {
  6680. if (outer_class->subclasses[i] == current_class) {
  6681. continue;
  6682. }
  6683. if (outer_class->subclasses[i]->name == p_identifier) {
  6684. DataType result;
  6685. result.has_type = true;
  6686. result.is_constant = true;
  6687. result.is_meta_type = true;
  6688. result.kind = DataType::CLASS;
  6689. result.class_type = outer_class->subclasses[i];
  6690. return result;
  6691. }
  6692. }
  6693. outer_class = outer_class->owner;
  6694. }
  6695. if (ScriptServer::is_global_class(p_identifier)) {
  6696. Ref<Script> scr = ResourceLoader::load(ScriptServer::get_global_class_path(p_identifier));
  6697. if (scr.is_valid()) {
  6698. DataType result;
  6699. result.has_type = true;
  6700. result.script_type = scr;
  6701. result.is_constant = true;
  6702. result.is_meta_type = true;
  6703. Ref<GDScript> gds = scr;
  6704. if (gds.is_valid()) {
  6705. if (!gds->is_valid()) {
  6706. _set_error("The class \"" + p_identifier + "\" couldn't be fully loaded (script error or cyclic dependency).");
  6707. return DataType();
  6708. }
  6709. result.kind = DataType::GDSCRIPT;
  6710. } else {
  6711. result.kind = DataType::SCRIPT;
  6712. }
  6713. return result;
  6714. }
  6715. _set_error("The class \"" + p_identifier + "\" was found in global scope, but its script couldn't be loaded.");
  6716. return DataType();
  6717. }
  6718. if (GDScriptLanguage::get_singleton()->get_global_map().has(p_identifier)) {
  6719. int idx = GDScriptLanguage::get_singleton()->get_global_map()[p_identifier];
  6720. Variant g = GDScriptLanguage::get_singleton()->get_global_array()[idx];
  6721. return _type_from_variant(g);
  6722. }
  6723. if (GDScriptLanguage::get_singleton()->get_named_globals_map().has(p_identifier)) {
  6724. Variant g = GDScriptLanguage::get_singleton()->get_named_globals_map()[p_identifier];
  6725. return _type_from_variant(g);
  6726. }
  6727. // Non-tool singletons aren't loaded, check project settings
  6728. List<PropertyInfo> props;
  6729. ProjectSettings::get_singleton()->get_property_list(&props);
  6730. for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) {
  6731. String s = E->get().name;
  6732. if (!s.begins_with("autoload/")) {
  6733. continue;
  6734. }
  6735. String name = s.get_slice("/", 1);
  6736. if (name == p_identifier) {
  6737. String script = ProjectSettings::get_singleton()->get(s);
  6738. if (script.begins_with("*")) {
  6739. script = script.right(1);
  6740. }
  6741. if (!script.begins_with("res://")) {
  6742. script = "res://" + script;
  6743. }
  6744. Ref<Script> singleton = ResourceLoader::load(script);
  6745. if (singleton.is_valid()) {
  6746. DataType result;
  6747. result.has_type = true;
  6748. result.is_constant = true;
  6749. result.script_type = singleton;
  6750. Ref<GDScript> gds = singleton;
  6751. if (gds.is_valid()) {
  6752. if (!gds->is_valid()) {
  6753. _set_error("Couldn't fully load the singleton script \"" + p_identifier + "\" (possible cyclic reference or parse error).", p_line);
  6754. return DataType();
  6755. }
  6756. result.kind = DataType::GDSCRIPT;
  6757. } else {
  6758. result.kind = DataType::SCRIPT;
  6759. }
  6760. }
  6761. }
  6762. }
  6763. // This means looking in the current class, which type is always known
  6764. _set_error("The identifier \"" + p_identifier.operator String() + "\" isn't declared in the current scope.", p_line);
  6765. }
  6766. #ifdef DEBUG_ENABLED
  6767. {
  6768. DataType tmp_type;
  6769. List<DataType> arg_types;
  6770. int argcount;
  6771. bool _static;
  6772. bool vararg;
  6773. if (_get_function_signature(base_type, p_identifier, tmp_type, arg_types, argcount, _static, vararg)) {
  6774. _add_warning(GDScriptWarning::FUNCTION_USED_AS_PROPERTY, p_line, p_identifier.operator String(), base_type.to_string());
  6775. }
  6776. }
  6777. #endif // DEBUG_ENABLED
  6778. _mark_line_as_unsafe(p_line);
  6779. return DataType();
  6780. }
  6781. void GDScriptParser::_check_class_level_types(ClassNode *p_class) {
  6782. // Names of internal object properties that we check to avoid overriding them.
  6783. // "__meta__" could also be in here, but since it doesn't really affect object metadata,
  6784. // it is okay to override it on script.
  6785. StringName script_name = CoreStringNames::get_singleton()->_script;
  6786. _mark_line_as_safe(p_class->line);
  6787. // Constants
  6788. for (Map<StringName, ClassNode::Constant>::Element *E = p_class->constant_expressions.front(); E; E = E->next()) {
  6789. ClassNode::Constant &c = E->get();
  6790. _mark_line_as_safe(c.expression->line);
  6791. DataType cont = _resolve_type(c.type, c.expression->line);
  6792. DataType expr = _resolve_type(c.expression->get_datatype(), c.expression->line);
  6793. if (check_types && !_is_type_compatible(cont, expr)) {
  6794. _set_error("The constant value type (" + expr.to_string() + ") isn't compatible with declared type (" + cont.to_string() + ").",
  6795. c.expression->line);
  6796. return;
  6797. }
  6798. expr.is_constant = true;
  6799. c.type = expr;
  6800. c.expression->set_datatype(expr);
  6801. DataType tmp;
  6802. const StringName &constant_name = E->key();
  6803. if (constant_name == script_name || _get_member_type(p_class->base_type, constant_name, tmp)) {
  6804. _set_error("The member \"" + String(constant_name) + "\" already exists in a parent class.", c.expression->line);
  6805. return;
  6806. }
  6807. }
  6808. // Function declarations
  6809. for (int i = 0; i < p_class->static_functions.size(); i++) {
  6810. _check_function_types(p_class->static_functions[i]);
  6811. if (error_set) {
  6812. return;
  6813. }
  6814. }
  6815. for (int i = 0; i < p_class->functions.size(); i++) {
  6816. _check_function_types(p_class->functions[i]);
  6817. if (error_set) {
  6818. return;
  6819. }
  6820. }
  6821. // Class variables
  6822. for (int i = 0; i < p_class->variables.size(); i++) {
  6823. ClassNode::Member &v = p_class->variables.write[i];
  6824. DataType tmp;
  6825. if (v.identifier == script_name || _get_member_type(p_class->base_type, v.identifier, tmp)) {
  6826. _set_error("The member \"" + String(v.identifier) + "\" already exists in a parent class.", v.line);
  6827. return;
  6828. }
  6829. _mark_line_as_safe(v.line);
  6830. v.data_type = _resolve_type(v.data_type, v.line);
  6831. v.initial_assignment->arguments[0]->set_datatype(v.data_type);
  6832. if (v.expression) {
  6833. DataType expr_type = _reduce_node_type(v.expression);
  6834. if (check_types && !_is_type_compatible(v.data_type, expr_type)) {
  6835. // Try supertype test
  6836. if (_is_type_compatible(expr_type, v.data_type)) {
  6837. _mark_line_as_unsafe(v.line);
  6838. } else {
  6839. // Try with implicit conversion
  6840. if (v.data_type.kind != DataType::BUILTIN || !_is_type_compatible(v.data_type, expr_type, true)) {
  6841. _set_error("The assigned expression's type (" + expr_type.to_string() + ") doesn't match the variable's type (" +
  6842. v.data_type.to_string() + ").",
  6843. v.line);
  6844. return;
  6845. }
  6846. // Replace assignment with implicit conversion
  6847. BuiltInFunctionNode *convert = alloc_node<BuiltInFunctionNode>();
  6848. convert->line = v.line;
  6849. convert->function = GDScriptFunctions::TYPE_CONVERT;
  6850. ConstantNode *tgt_type = alloc_node<ConstantNode>();
  6851. tgt_type->line = v.line;
  6852. tgt_type->value = (int)v.data_type.builtin_type;
  6853. OperatorNode *convert_call = alloc_node<OperatorNode>();
  6854. convert_call->line = v.line;
  6855. convert_call->op = OperatorNode::OP_CALL;
  6856. convert_call->arguments.push_back(convert);
  6857. convert_call->arguments.push_back(v.expression);
  6858. convert_call->arguments.push_back(tgt_type);
  6859. v.expression = convert_call;
  6860. v.initial_assignment->arguments.write[1] = convert_call;
  6861. }
  6862. }
  6863. if (v.data_type.infer_type) {
  6864. if (!expr_type.has_type) {
  6865. _set_error("The assigned value doesn't have a set type; the variable type can't be inferred.", v.line);
  6866. return;
  6867. }
  6868. if (expr_type.kind == DataType::BUILTIN && expr_type.builtin_type == Variant::NIL) {
  6869. _set_error("The variable type cannot be inferred because its value is \"null\".", v.line);
  6870. return;
  6871. }
  6872. v.data_type = expr_type;
  6873. v.data_type.is_constant = false;
  6874. }
  6875. }
  6876. // Check export hint
  6877. if (v.data_type.has_type && v._export.type != Variant::NIL) {
  6878. DataType export_type = _type_from_property(v._export);
  6879. if (!_is_type_compatible(v.data_type, export_type, true)) {
  6880. _set_error("The export hint's type (" + export_type.to_string() + ") doesn't match the variable's type (" +
  6881. v.data_type.to_string() + ").",
  6882. v.line);
  6883. return;
  6884. }
  6885. }
  6886. // Setter and getter
  6887. if (v.setter == StringName() && v.getter == StringName()) {
  6888. continue;
  6889. }
  6890. bool found_getter = false;
  6891. bool found_setter = false;
  6892. for (int j = 0; j < p_class->functions.size(); j++) {
  6893. if (v.setter == p_class->functions[j]->name) {
  6894. found_setter = true;
  6895. FunctionNode *setter = p_class->functions[j];
  6896. if (setter->get_required_argument_count() != 1 &&
  6897. !(setter->get_required_argument_count() == 0 && setter->default_values.size() > 0)) {
  6898. _set_error("The setter function needs to receive exactly 1 argument. See \"" + setter->name +
  6899. "()\" definition at line " + itos(setter->line) + ".",
  6900. v.line);
  6901. return;
  6902. }
  6903. if (!_is_type_compatible(v.data_type, setter->argument_types[0])) {
  6904. _set_error("The setter argument's type (" + setter->argument_types[0].to_string() +
  6905. ") doesn't match the variable's type (" + v.data_type.to_string() + "). See \"" +
  6906. setter->name + "()\" definition at line " + itos(setter->line) + ".",
  6907. v.line);
  6908. return;
  6909. }
  6910. continue;
  6911. }
  6912. if (v.getter == p_class->functions[j]->name) {
  6913. found_getter = true;
  6914. FunctionNode *getter = p_class->functions[j];
  6915. if (getter->get_required_argument_count() != 0) {
  6916. _set_error("The getter function can't receive arguments. See \"" + getter->name +
  6917. "()\" definition at line " + itos(getter->line) + ".",
  6918. v.line);
  6919. return;
  6920. }
  6921. if (!_is_type_compatible(v.data_type, getter->get_datatype())) {
  6922. _set_error("The getter return type (" + getter->get_datatype().to_string() +
  6923. ") doesn't match the variable's type (" + v.data_type.to_string() +
  6924. "). See \"" + getter->name + "()\" definition at line " + itos(getter->line) + ".",
  6925. v.line);
  6926. return;
  6927. }
  6928. }
  6929. if (found_getter && found_setter) {
  6930. break;
  6931. }
  6932. }
  6933. if ((found_getter || v.getter == StringName()) && (found_setter || v.setter == StringName())) {
  6934. continue;
  6935. }
  6936. // Check for static functions
  6937. for (int j = 0; j < p_class->static_functions.size(); j++) {
  6938. if (v.setter == p_class->static_functions[j]->name) {
  6939. FunctionNode *setter = p_class->static_functions[j];
  6940. _set_error("The setter can't be a static function. See \"" + setter->name + "()\" definition at line " + itos(setter->line) + ".", v.line);
  6941. return;
  6942. }
  6943. if (v.getter == p_class->static_functions[j]->name) {
  6944. FunctionNode *getter = p_class->static_functions[j];
  6945. _set_error("The getter can't be a static function. See \"" + getter->name + "()\" definition at line " + itos(getter->line) + ".", v.line);
  6946. return;
  6947. }
  6948. }
  6949. if (!found_setter && v.setter != StringName()) {
  6950. _set_error("The setter function isn't defined.", v.line);
  6951. return;
  6952. }
  6953. if (!found_getter && v.getter != StringName()) {
  6954. _set_error("The getter function isn't defined.", v.line);
  6955. return;
  6956. }
  6957. }
  6958. // Signals
  6959. DataType base = p_class->base_type;
  6960. while (base.kind == DataType::CLASS) {
  6961. ClassNode *base_class = base.class_type;
  6962. for (int i = 0; i < p_class->_signals.size(); i++) {
  6963. for (int j = 0; j < base_class->_signals.size(); j++) {
  6964. if (p_class->_signals[i].name == base_class->_signals[j].name) {
  6965. _set_error("The signal \"" + p_class->_signals[i].name + "\" already exists in a parent class.", p_class->_signals[i].line);
  6966. return;
  6967. }
  6968. }
  6969. }
  6970. base = base_class->base_type;
  6971. }
  6972. StringName native;
  6973. if (base.kind == DataType::GDSCRIPT || base.kind == DataType::SCRIPT) {
  6974. Ref<Script> scr = base.script_type;
  6975. if (scr.is_valid() && scr->is_valid()) {
  6976. native = scr->get_instance_base_type();
  6977. for (int i = 0; i < p_class->_signals.size(); i++) {
  6978. if (scr->has_script_signal(p_class->_signals[i].name)) {
  6979. _set_error("The signal \"" + p_class->_signals[i].name + "\" already exists in a parent class.", p_class->_signals[i].line);
  6980. return;
  6981. }
  6982. }
  6983. }
  6984. } else if (base.kind == DataType::NATIVE) {
  6985. native = base.native_type;
  6986. }
  6987. if (native != StringName()) {
  6988. for (int i = 0; i < p_class->_signals.size(); i++) {
  6989. if (ClassDB::has_signal(native, p_class->_signals[i].name)) {
  6990. _set_error("The signal \"" + p_class->_signals[i].name + "\" already exists in a parent class.", p_class->_signals[i].line);
  6991. return;
  6992. }
  6993. }
  6994. }
  6995. // Inner classes
  6996. for (int i = 0; i < p_class->subclasses.size(); i++) {
  6997. current_class = p_class->subclasses[i];
  6998. _check_class_level_types(current_class);
  6999. if (error_set) {
  7000. return;
  7001. }
  7002. current_class = p_class;
  7003. }
  7004. }
  7005. void GDScriptParser::_check_function_types(FunctionNode *p_function) {
  7006. p_function->return_type = _resolve_type(p_function->return_type, p_function->line);
  7007. // Arguments
  7008. int defaults_ofs = p_function->arguments.size() - p_function->default_values.size();
  7009. for (int i = 0; i < p_function->arguments.size(); i++) {
  7010. if (i < defaults_ofs) {
  7011. p_function->argument_types.write[i] = _resolve_type(p_function->argument_types[i], p_function->line);
  7012. } else {
  7013. if (p_function->default_values[i - defaults_ofs]->type != Node::TYPE_OPERATOR) {
  7014. _set_error("Parser bug: invalid argument default value.", p_function->line, p_function->column);
  7015. return;
  7016. }
  7017. OperatorNode *op = static_cast<OperatorNode *>(p_function->default_values[i - defaults_ofs]);
  7018. if (op->op != OperatorNode::OP_ASSIGN || op->arguments.size() != 2) {
  7019. _set_error("Parser bug: invalid argument default value operation.", p_function->line);
  7020. return;
  7021. }
  7022. DataType def_type = _reduce_node_type(op->arguments[1]);
  7023. if (p_function->argument_types[i].infer_type) {
  7024. def_type.is_constant = false;
  7025. p_function->argument_types.write[i] = def_type;
  7026. } else {
  7027. p_function->argument_types.write[i] = _resolve_type(p_function->argument_types[i], p_function->line);
  7028. if (!_is_type_compatible(p_function->argument_types[i], def_type, true)) {
  7029. String arg_name = p_function->arguments[i];
  7030. _set_error("Value type (" + def_type.to_string() + ") doesn't match the type of argument '" +
  7031. arg_name + "' (" + p_function->argument_types[i].to_string() + ").",
  7032. p_function->line);
  7033. }
  7034. }
  7035. }
  7036. #ifdef DEBUG_ENABLED
  7037. if (p_function->arguments_usage[i] == 0 && !p_function->arguments[i].operator String().begins_with("_")) {
  7038. _add_warning(GDScriptWarning::UNUSED_ARGUMENT, p_function->line, p_function->name, p_function->arguments[i].operator String());
  7039. }
  7040. for (int j = 0; j < current_class->variables.size(); j++) {
  7041. if (current_class->variables[j].identifier == p_function->arguments[i]) {
  7042. _add_warning(GDScriptWarning::SHADOWED_VARIABLE, p_function->line, p_function->arguments[i], itos(current_class->variables[j].line));
  7043. }
  7044. }
  7045. #endif // DEBUG_ENABLED
  7046. }
  7047. if (!(p_function->name == "_init")) {
  7048. // Signature for the initializer may vary
  7049. #ifdef DEBUG_ENABLED
  7050. DataType return_type;
  7051. List<DataType> arg_types;
  7052. int default_arg_count = 0;
  7053. bool _static = false;
  7054. bool vararg = false;
  7055. DataType base_type = current_class->base_type;
  7056. if (_get_function_signature(base_type, p_function->name, return_type, arg_types, default_arg_count, _static, vararg)) {
  7057. bool valid = _static == p_function->_static;
  7058. valid = valid && return_type == p_function->return_type;
  7059. int argsize_diff = p_function->arguments.size() - arg_types.size();
  7060. valid = valid && argsize_diff >= 0;
  7061. valid = valid && p_function->default_values.size() >= default_arg_count + argsize_diff;
  7062. int i = 0;
  7063. for (List<DataType>::Element *E = arg_types.front(); valid && E; E = E->next()) {
  7064. valid = valid && E->get() == p_function->argument_types[i++];
  7065. }
  7066. if (!valid) {
  7067. String parent_signature = return_type.has_type ? return_type.to_string() : "Variant";
  7068. if (parent_signature == "null") {
  7069. parent_signature = "void";
  7070. }
  7071. parent_signature += " " + p_function->name + "(";
  7072. if (arg_types.size()) {
  7073. int j = 0;
  7074. for (List<DataType>::Element *E = arg_types.front(); E; E = E->next()) {
  7075. if (E != arg_types.front()) {
  7076. parent_signature += ", ";
  7077. }
  7078. String arg = E->get().to_string();
  7079. if (arg == "null" || arg == "var") {
  7080. arg = "Variant";
  7081. }
  7082. parent_signature += arg;
  7083. if (j == arg_types.size() - default_arg_count) {
  7084. parent_signature += "=default";
  7085. }
  7086. j++;
  7087. }
  7088. }
  7089. parent_signature += ")";
  7090. _set_error("The function signature doesn't match the parent. Parent signature is: \"" + parent_signature + "\".", p_function->line);
  7091. return;
  7092. }
  7093. }
  7094. #endif // DEBUG_ENABLED
  7095. } else {
  7096. if (p_function->return_type.has_type && (p_function->return_type.kind != DataType::BUILTIN || p_function->return_type.builtin_type != Variant::NIL)) {
  7097. _set_error("The constructor can't return a value.", p_function->line);
  7098. return;
  7099. }
  7100. }
  7101. if (p_function->return_type.has_type && (p_function->return_type.kind != DataType::BUILTIN || p_function->return_type.builtin_type != Variant::NIL)) {
  7102. if (!p_function->body->has_return) {
  7103. _set_error("A non-void function must return a value in all possible paths.", p_function->line);
  7104. return;
  7105. }
  7106. }
  7107. if (p_function->has_yield) {
  7108. // yield() will make the function return a GDScriptFunctionState, so the type is ambiguous
  7109. p_function->return_type.has_type = false;
  7110. p_function->return_type.may_yield = true;
  7111. }
  7112. }
  7113. void GDScriptParser::_check_class_blocks_types(ClassNode *p_class) {
  7114. // Function blocks
  7115. for (int i = 0; i < p_class->static_functions.size(); i++) {
  7116. current_function = p_class->static_functions[i];
  7117. current_block = current_function->body;
  7118. _mark_line_as_safe(current_function->line);
  7119. _check_block_types(current_block);
  7120. current_block = nullptr;
  7121. current_function = nullptr;
  7122. if (error_set) {
  7123. return;
  7124. }
  7125. }
  7126. for (int i = 0; i < p_class->functions.size(); i++) {
  7127. current_function = p_class->functions[i];
  7128. current_block = current_function->body;
  7129. _mark_line_as_safe(current_function->line);
  7130. _check_block_types(current_block);
  7131. current_block = nullptr;
  7132. current_function = nullptr;
  7133. if (error_set) {
  7134. return;
  7135. }
  7136. }
  7137. #ifdef DEBUG_ENABLED
  7138. // Warnings
  7139. for (int i = 0; i < p_class->variables.size(); i++) {
  7140. if (p_class->variables[i].usages == 0) {
  7141. _add_warning(GDScriptWarning::UNUSED_CLASS_VARIABLE, p_class->variables[i].line, p_class->variables[i].identifier);
  7142. }
  7143. }
  7144. for (int i = 0; i < p_class->_signals.size(); i++) {
  7145. if (p_class->_signals[i].emissions == 0) {
  7146. _add_warning(GDScriptWarning::UNUSED_SIGNAL, p_class->_signals[i].line, p_class->_signals[i].name);
  7147. }
  7148. }
  7149. #endif // DEBUG_ENABLED
  7150. // Inner classes
  7151. for (int i = 0; i < p_class->subclasses.size(); i++) {
  7152. current_class = p_class->subclasses[i];
  7153. _check_class_blocks_types(current_class);
  7154. if (error_set) {
  7155. return;
  7156. }
  7157. current_class = p_class;
  7158. }
  7159. }
  7160. #ifdef DEBUG_ENABLED
  7161. static String _find_function_name(const GDScriptParser::OperatorNode *p_call) {
  7162. switch (p_call->arguments[0]->type) {
  7163. case GDScriptParser::Node::TYPE_TYPE: {
  7164. return Variant::get_type_name(static_cast<GDScriptParser::TypeNode *>(p_call->arguments[0])->vtype);
  7165. } break;
  7166. case GDScriptParser::Node::TYPE_BUILT_IN_FUNCTION: {
  7167. return GDScriptFunctions::get_func_name(static_cast<GDScriptParser::BuiltInFunctionNode *>(p_call->arguments[0])->function);
  7168. } break;
  7169. default: {
  7170. int id_index = p_call->op == GDScriptParser::OperatorNode::OP_PARENT_CALL ? 0 : 1;
  7171. if (p_call->arguments.size() > id_index && p_call->arguments[id_index]->type == GDScriptParser::Node::TYPE_IDENTIFIER) {
  7172. return static_cast<GDScriptParser::IdentifierNode *>(p_call->arguments[id_index])->name;
  7173. }
  7174. } break;
  7175. }
  7176. return String();
  7177. }
  7178. #endif // DEBUG_ENABLED
  7179. void GDScriptParser::_check_block_types(BlockNode *p_block) {
  7180. Node *last_var_assign = nullptr;
  7181. // Check each statement
  7182. for (int z = 0; z < p_block->statements.size(); z++) {
  7183. Node *statement = p_block->statements[z];
  7184. switch (statement->type) {
  7185. case Node::TYPE_NEWLINE:
  7186. case Node::TYPE_BREAKPOINT: {
  7187. // Nothing to do
  7188. } break;
  7189. case Node::TYPE_ASSERT: {
  7190. AssertNode *an = static_cast<AssertNode *>(statement);
  7191. _mark_line_as_safe(an->line);
  7192. _reduce_node_type(an->condition);
  7193. _reduce_node_type(an->message);
  7194. } break;
  7195. case Node::TYPE_LOCAL_VAR: {
  7196. LocalVarNode *lv = static_cast<LocalVarNode *>(statement);
  7197. lv->datatype = _resolve_type(lv->datatype, lv->line);
  7198. _mark_line_as_safe(lv->line);
  7199. last_var_assign = lv->assign;
  7200. if (lv->assign) {
  7201. lv->assign_op->arguments[0]->set_datatype(lv->datatype);
  7202. DataType assign_type = _reduce_node_type(lv->assign);
  7203. #ifdef DEBUG_ENABLED
  7204. if (assign_type.has_type && assign_type.kind == DataType::BUILTIN && assign_type.builtin_type == Variant::NIL) {
  7205. if (lv->assign->type == Node::TYPE_OPERATOR) {
  7206. OperatorNode *call = static_cast<OperatorNode *>(lv->assign);
  7207. if (call->op == OperatorNode::OP_CALL || call->op == OperatorNode::OP_PARENT_CALL) {
  7208. _add_warning(GDScriptWarning::VOID_ASSIGNMENT, lv->line, _find_function_name(call));
  7209. }
  7210. }
  7211. }
  7212. if (lv->datatype.has_type && assign_type.may_yield && lv->assign->type == Node::TYPE_OPERATOR) {
  7213. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, lv->line, _find_function_name(static_cast<OperatorNode *>(lv->assign)));
  7214. }
  7215. for (int i = 0; i < current_class->variables.size(); i++) {
  7216. if (current_class->variables[i].identifier == lv->name) {
  7217. _add_warning(GDScriptWarning::SHADOWED_VARIABLE, lv->line, lv->name, itos(current_class->variables[i].line));
  7218. }
  7219. }
  7220. #endif // DEBUG_ENABLED
  7221. if (!_is_type_compatible(lv->datatype, assign_type)) {
  7222. // Try supertype test
  7223. if (_is_type_compatible(assign_type, lv->datatype)) {
  7224. _mark_line_as_unsafe(lv->line);
  7225. } else {
  7226. // Try implicit conversion
  7227. if (lv->datatype.kind != DataType::BUILTIN || !_is_type_compatible(lv->datatype, assign_type, true)) {
  7228. _set_error("The assigned value type (" + assign_type.to_string() + ") doesn't match the variable's type (" +
  7229. lv->datatype.to_string() + ").",
  7230. lv->line);
  7231. return;
  7232. }
  7233. // Replace assignment with implicit conversion
  7234. BuiltInFunctionNode *convert = alloc_node<BuiltInFunctionNode>();
  7235. convert->line = lv->line;
  7236. convert->function = GDScriptFunctions::TYPE_CONVERT;
  7237. ConstantNode *tgt_type = alloc_node<ConstantNode>();
  7238. tgt_type->line = lv->line;
  7239. tgt_type->value = (int)lv->datatype.builtin_type;
  7240. OperatorNode *convert_call = alloc_node<OperatorNode>();
  7241. convert_call->line = lv->line;
  7242. convert_call->op = OperatorNode::OP_CALL;
  7243. convert_call->arguments.push_back(convert);
  7244. convert_call->arguments.push_back(lv->assign);
  7245. convert_call->arguments.push_back(tgt_type);
  7246. lv->assign = convert_call;
  7247. lv->assign_op->arguments.write[1] = convert_call;
  7248. #ifdef DEBUG_ENABLED
  7249. if (lv->datatype.builtin_type == Variant::INT && assign_type.builtin_type == Variant::REAL) {
  7250. _add_warning(GDScriptWarning::NARROWING_CONVERSION, lv->line);
  7251. }
  7252. #endif // DEBUG_ENABLED
  7253. }
  7254. }
  7255. if (lv->datatype.infer_type) {
  7256. if (!assign_type.has_type) {
  7257. _set_error("The assigned value doesn't have a set type; the variable type can't be inferred.", lv->line);
  7258. return;
  7259. }
  7260. if (assign_type.kind == DataType::BUILTIN && assign_type.builtin_type == Variant::NIL) {
  7261. _set_error("The variable type cannot be inferred because its value is \"null\".", lv->line);
  7262. return;
  7263. }
  7264. lv->datatype = assign_type;
  7265. lv->datatype.is_constant = false;
  7266. }
  7267. if (lv->datatype.has_type && !assign_type.has_type) {
  7268. _mark_line_as_unsafe(lv->line);
  7269. }
  7270. }
  7271. } break;
  7272. case Node::TYPE_OPERATOR: {
  7273. OperatorNode *op = static_cast<OperatorNode *>(statement);
  7274. switch (op->op) {
  7275. case OperatorNode::OP_ASSIGN:
  7276. case OperatorNode::OP_ASSIGN_ADD:
  7277. case OperatorNode::OP_ASSIGN_SUB:
  7278. case OperatorNode::OP_ASSIGN_MUL:
  7279. case OperatorNode::OP_ASSIGN_DIV:
  7280. case OperatorNode::OP_ASSIGN_MOD:
  7281. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  7282. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  7283. case OperatorNode::OP_ASSIGN_BIT_AND:
  7284. case OperatorNode::OP_ASSIGN_BIT_OR:
  7285. case OperatorNode::OP_ASSIGN_BIT_XOR: {
  7286. if (op->arguments.size() < 2) {
  7287. _set_error("Parser bug: operation without enough arguments.", op->line, op->column);
  7288. return;
  7289. }
  7290. if (op->arguments[1] == last_var_assign) {
  7291. // Assignment was already checked
  7292. break;
  7293. }
  7294. _mark_line_as_safe(op->line);
  7295. DataType lh_type = _reduce_node_type(op->arguments[0]);
  7296. if (error_set) {
  7297. return;
  7298. }
  7299. if (check_types) {
  7300. if (!lh_type.has_type) {
  7301. if (op->arguments[0]->type == Node::TYPE_OPERATOR) {
  7302. _mark_line_as_unsafe(op->line);
  7303. }
  7304. }
  7305. if (lh_type.is_constant) {
  7306. _set_error("Can't assign a new value to a constant.", op->line);
  7307. return;
  7308. }
  7309. }
  7310. DataType rh_type;
  7311. if (op->op != OperatorNode::OP_ASSIGN) {
  7312. // Validate operation
  7313. DataType arg_type = _reduce_node_type(op->arguments[1]);
  7314. if (!arg_type.has_type) {
  7315. _mark_line_as_unsafe(op->line);
  7316. break;
  7317. }
  7318. Variant::Operator oper = _get_variant_operation(op->op);
  7319. bool valid = false;
  7320. rh_type = _get_operation_type(oper, lh_type, arg_type, valid);
  7321. if (check_types && !valid) {
  7322. _set_error("Invalid operand types (\"" + lh_type.to_string() + "\" and \"" + arg_type.to_string() +
  7323. "\") to assignment operator \"" + Variant::get_operator_name(oper) + "\".",
  7324. op->line);
  7325. return;
  7326. }
  7327. } else {
  7328. rh_type = _reduce_node_type(op->arguments[1]);
  7329. }
  7330. #ifdef DEBUG_ENABLED
  7331. if (rh_type.has_type && rh_type.kind == DataType::BUILTIN && rh_type.builtin_type == Variant::NIL) {
  7332. if (op->arguments[1]->type == Node::TYPE_OPERATOR) {
  7333. OperatorNode *call = static_cast<OperatorNode *>(op->arguments[1]);
  7334. if (call->op == OperatorNode::OP_CALL || call->op == OperatorNode::OP_PARENT_CALL) {
  7335. _add_warning(GDScriptWarning::VOID_ASSIGNMENT, op->line, _find_function_name(call));
  7336. }
  7337. }
  7338. }
  7339. if (lh_type.has_type && rh_type.may_yield && op->arguments[1]->type == Node::TYPE_OPERATOR) {
  7340. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, op->line, _find_function_name(static_cast<OperatorNode *>(op->arguments[1])));
  7341. }
  7342. #endif // DEBUG_ENABLED
  7343. bool type_match = lh_type.has_type && rh_type.has_type;
  7344. if (check_types && !_is_type_compatible(lh_type, rh_type)) {
  7345. type_match = false;
  7346. // Try supertype test
  7347. if (_is_type_compatible(rh_type, lh_type)) {
  7348. _mark_line_as_unsafe(op->line);
  7349. } else {
  7350. // Try implicit conversion
  7351. if (lh_type.kind != DataType::BUILTIN || !_is_type_compatible(lh_type, rh_type, true)) {
  7352. _set_error("The assigned value's type (" + rh_type.to_string() + ") doesn't match the variable's type (" +
  7353. lh_type.to_string() + ").",
  7354. op->line);
  7355. return;
  7356. }
  7357. if (op->op == OperatorNode::OP_ASSIGN) {
  7358. // Replace assignment with implicit conversion
  7359. BuiltInFunctionNode *convert = alloc_node<BuiltInFunctionNode>();
  7360. convert->line = op->line;
  7361. convert->function = GDScriptFunctions::TYPE_CONVERT;
  7362. ConstantNode *tgt_type = alloc_node<ConstantNode>();
  7363. tgt_type->line = op->line;
  7364. tgt_type->value = (int)lh_type.builtin_type;
  7365. OperatorNode *convert_call = alloc_node<OperatorNode>();
  7366. convert_call->line = op->line;
  7367. convert_call->op = OperatorNode::OP_CALL;
  7368. convert_call->arguments.push_back(convert);
  7369. convert_call->arguments.push_back(op->arguments[1]);
  7370. convert_call->arguments.push_back(tgt_type);
  7371. op->arguments.write[1] = convert_call;
  7372. type_match = true; // Since we are converting, the type is matching
  7373. }
  7374. #ifdef DEBUG_ENABLED
  7375. if (lh_type.builtin_type == Variant::INT && rh_type.builtin_type == Variant::REAL) {
  7376. _add_warning(GDScriptWarning::NARROWING_CONVERSION, op->line);
  7377. }
  7378. #endif // DEBUG_ENABLED
  7379. }
  7380. }
  7381. #ifdef DEBUG_ENABLED
  7382. if (!rh_type.has_type && (op->op != OperatorNode::OP_ASSIGN || lh_type.has_type || op->arguments[0]->type == Node::TYPE_OPERATOR)) {
  7383. _mark_line_as_unsafe(op->line);
  7384. }
  7385. #endif // DEBUG_ENABLED
  7386. op->datatype.has_type = type_match;
  7387. } break;
  7388. case OperatorNode::OP_CALL:
  7389. case OperatorNode::OP_PARENT_CALL: {
  7390. _mark_line_as_safe(op->line);
  7391. DataType func_type = _reduce_function_call_type(op);
  7392. #ifdef DEBUG_ENABLED
  7393. if (func_type.has_type && (func_type.kind != DataType::BUILTIN || func_type.builtin_type != Variant::NIL)) {
  7394. // Figure out function name for warning
  7395. String func_name = _find_function_name(op);
  7396. if (func_name.empty()) {
  7397. func_name = "<undetected name>";
  7398. }
  7399. _add_warning(GDScriptWarning::RETURN_VALUE_DISCARDED, op->line, func_name);
  7400. }
  7401. #endif // DEBUG_ENABLED
  7402. if (error_set) {
  7403. return;
  7404. }
  7405. } break;
  7406. case OperatorNode::OP_YIELD: {
  7407. _mark_line_as_safe(op->line);
  7408. _reduce_node_type(op);
  7409. } break;
  7410. default: {
  7411. _mark_line_as_safe(op->line);
  7412. _reduce_node_type(op); // Test for safety anyway
  7413. #ifdef DEBUG_ENABLED
  7414. if (op->op == OperatorNode::OP_TERNARY_IF) {
  7415. _add_warning(GDScriptWarning::STANDALONE_TERNARY, statement->line);
  7416. } else {
  7417. _add_warning(GDScriptWarning::STANDALONE_EXPRESSION, statement->line);
  7418. }
  7419. #endif // DEBUG_ENABLED
  7420. }
  7421. }
  7422. } break;
  7423. case Node::TYPE_CONTROL_FLOW: {
  7424. ControlFlowNode *cf = static_cast<ControlFlowNode *>(statement);
  7425. _mark_line_as_safe(cf->line);
  7426. switch (cf->cf_type) {
  7427. case ControlFlowNode::CF_RETURN: {
  7428. DataType function_type = current_function->get_datatype();
  7429. DataType ret_type;
  7430. if (cf->arguments.size() > 0) {
  7431. ret_type = _reduce_node_type(cf->arguments[0]);
  7432. if (error_set) {
  7433. return;
  7434. }
  7435. }
  7436. if (!function_type.has_type) {
  7437. break;
  7438. }
  7439. if (function_type.kind == DataType::BUILTIN && function_type.builtin_type == Variant::NIL) {
  7440. // Return void, should not have arguments
  7441. if (cf->arguments.size() > 0) {
  7442. _set_error("A void function cannot return a value.", cf->line, cf->column);
  7443. return;
  7444. }
  7445. } else {
  7446. // Return something, cannot be empty
  7447. if (cf->arguments.size() == 0) {
  7448. _set_error("A non-void function must return a value.", cf->line, cf->column);
  7449. return;
  7450. }
  7451. if (!_is_type_compatible(function_type, ret_type)) {
  7452. _set_error("The returned value type (" + ret_type.to_string() + ") doesn't match the function return type (" +
  7453. function_type.to_string() + ").",
  7454. cf->line, cf->column);
  7455. return;
  7456. }
  7457. }
  7458. } break;
  7459. case ControlFlowNode::CF_MATCH: {
  7460. MatchNode *match_node = cf->match;
  7461. _transform_match_statment(match_node);
  7462. } break;
  7463. default: {
  7464. if (cf->body_else) {
  7465. _mark_line_as_safe(cf->body_else->line);
  7466. }
  7467. for (int i = 0; i < cf->arguments.size(); i++) {
  7468. _reduce_node_type(cf->arguments[i]);
  7469. }
  7470. } break;
  7471. }
  7472. } break;
  7473. case Node::TYPE_CONSTANT: {
  7474. ConstantNode *cn = static_cast<ConstantNode *>(statement);
  7475. // Strings are fine since they can be multiline comments
  7476. if (cn->value.get_type() == Variant::STRING) {
  7477. break;
  7478. }
  7479. FALLTHROUGH;
  7480. }
  7481. default: {
  7482. _mark_line_as_safe(statement->line);
  7483. _reduce_node_type(statement); // Test for safety anyway
  7484. #ifdef DEBUG_ENABLED
  7485. _add_warning(GDScriptWarning::STANDALONE_EXPRESSION, statement->line);
  7486. #endif // DEBUG_ENABLED
  7487. }
  7488. }
  7489. }
  7490. // Parse sub blocks
  7491. for (int i = 0; i < p_block->sub_blocks.size(); i++) {
  7492. current_block = p_block->sub_blocks[i];
  7493. _check_block_types(current_block);
  7494. current_block = p_block;
  7495. if (error_set) {
  7496. return;
  7497. }
  7498. }
  7499. #ifdef DEBUG_ENABLED
  7500. // Warnings check
  7501. for (Map<StringName, LocalVarNode *>::Element *E = p_block->variables.front(); E; E = E->next()) {
  7502. LocalVarNode *lv = E->get();
  7503. if (!lv->name.operator String().begins_with("_")) {
  7504. if (lv->usages == 0) {
  7505. _add_warning(GDScriptWarning::UNUSED_VARIABLE, lv->line, lv->name);
  7506. } else if (lv->assignments == 0) {
  7507. _add_warning(GDScriptWarning::UNASSIGNED_VARIABLE, lv->line, lv->name);
  7508. }
  7509. }
  7510. }
  7511. #endif // DEBUG_ENABLED
  7512. }
  7513. void GDScriptParser::_set_error(const String &p_error, int p_line, int p_column) {
  7514. if (error_set) {
  7515. return; //allow no further errors
  7516. }
  7517. error = p_error;
  7518. error_line = p_line < 0 ? tokenizer->get_token_line() : p_line;
  7519. error_column = p_column < 0 ? tokenizer->get_token_column() : p_column;
  7520. error_set = true;
  7521. }
  7522. #ifdef DEBUG_ENABLED
  7523. void GDScriptParser::_add_warning(int p_code, int p_line, const String &p_symbol1, const String &p_symbol2, const String &p_symbol3, const String &p_symbol4) {
  7524. Vector<String> symbols;
  7525. if (!p_symbol1.empty()) {
  7526. symbols.push_back(p_symbol1);
  7527. }
  7528. if (!p_symbol2.empty()) {
  7529. symbols.push_back(p_symbol2);
  7530. }
  7531. if (!p_symbol3.empty()) {
  7532. symbols.push_back(p_symbol3);
  7533. }
  7534. if (!p_symbol4.empty()) {
  7535. symbols.push_back(p_symbol4);
  7536. }
  7537. _add_warning(p_code, p_line, symbols);
  7538. }
  7539. void GDScriptParser::_add_warning(int p_code, int p_line, const Vector<String> &p_symbols) {
  7540. if (GLOBAL_GET("debug/gdscript/warnings/exclude_addons").booleanize() && base_path.begins_with("res://addons/")) {
  7541. return;
  7542. }
  7543. if (tokenizer->is_ignoring_warnings() || !GLOBAL_GET("debug/gdscript/warnings/enable").booleanize()) {
  7544. return;
  7545. }
  7546. String warn_name = GDScriptWarning::get_name_from_code((GDScriptWarning::Code)p_code).to_lower();
  7547. if (tokenizer->get_warning_global_skips().has(warn_name)) {
  7548. return;
  7549. }
  7550. if (!GLOBAL_GET("debug/gdscript/warnings/" + warn_name)) {
  7551. return;
  7552. }
  7553. GDScriptWarning warn;
  7554. warn.code = (GDScriptWarning::Code)p_code;
  7555. warn.symbols = p_symbols;
  7556. warn.line = p_line == -1 ? tokenizer->get_token_line() : p_line;
  7557. List<GDScriptWarning>::Element *before = nullptr;
  7558. for (List<GDScriptWarning>::Element *E = warnings.front(); E; E = E->next()) {
  7559. if (E->get().line > warn.line) {
  7560. break;
  7561. }
  7562. before = E;
  7563. }
  7564. if (before) {
  7565. warnings.insert_after(before, warn);
  7566. } else {
  7567. warnings.push_front(warn);
  7568. }
  7569. }
  7570. #endif // DEBUG_ENABLED
  7571. String GDScriptParser::get_error() const {
  7572. return error;
  7573. }
  7574. int GDScriptParser::get_error_line() const {
  7575. return error_line;
  7576. }
  7577. int GDScriptParser::get_error_column() const {
  7578. return error_column;
  7579. }
  7580. bool GDScriptParser::has_error() const {
  7581. return error_set;
  7582. }
  7583. Error GDScriptParser::_parse(const String &p_base_path) {
  7584. base_path = p_base_path;
  7585. //assume class
  7586. ClassNode *main_class = alloc_node<ClassNode>();
  7587. main_class->initializer = alloc_node<BlockNode>();
  7588. main_class->initializer->parent_class = main_class;
  7589. main_class->ready = alloc_node<BlockNode>();
  7590. main_class->ready->parent_class = main_class;
  7591. current_class = main_class;
  7592. _parse_class(main_class);
  7593. if (tokenizer->get_token() == GDScriptTokenizer::TK_ERROR) {
  7594. error_set = false;
  7595. _set_error("Parse error: " + tokenizer->get_token_error());
  7596. }
  7597. bool for_completion_error_set = false;
  7598. if (error_set && for_completion) {
  7599. for_completion_error_set = true;
  7600. error_set = false;
  7601. }
  7602. if (error_set) {
  7603. return ERR_PARSE_ERROR;
  7604. }
  7605. if (dependencies_only) {
  7606. return OK;
  7607. }
  7608. _determine_inheritance(main_class);
  7609. if (error_set) {
  7610. return ERR_PARSE_ERROR;
  7611. }
  7612. current_class = main_class;
  7613. current_function = nullptr;
  7614. current_block = nullptr;
  7615. if (for_completion) {
  7616. check_types = false;
  7617. }
  7618. // Resolve all class-level stuff before getting into function blocks
  7619. _check_class_level_types(main_class);
  7620. if (error_set) {
  7621. return ERR_PARSE_ERROR;
  7622. }
  7623. // Resolve the function blocks
  7624. _check_class_blocks_types(main_class);
  7625. if (for_completion_error_set) {
  7626. error_set = true;
  7627. }
  7628. if (error_set) {
  7629. return ERR_PARSE_ERROR;
  7630. }
  7631. #ifdef DEBUG_ENABLED
  7632. // Resolve warning ignores
  7633. Vector<Pair<int, String>> warning_skips = tokenizer->get_warning_skips();
  7634. bool warning_is_error = GLOBAL_GET("debug/gdscript/warnings/treat_warnings_as_errors").booleanize();
  7635. for (List<GDScriptWarning>::Element *E = warnings.front(); E;) {
  7636. GDScriptWarning &w = E->get();
  7637. int skip_index = -1;
  7638. for (int i = 0; i < warning_skips.size(); i++) {
  7639. if (warning_skips[i].first > w.line) {
  7640. break;
  7641. }
  7642. skip_index = i;
  7643. }
  7644. List<GDScriptWarning>::Element *next = E->next();
  7645. bool erase = false;
  7646. if (skip_index != -1) {
  7647. if (warning_skips[skip_index].second == GDScriptWarning::get_name_from_code(w.code).to_lower()) {
  7648. erase = true;
  7649. }
  7650. warning_skips.remove(skip_index);
  7651. }
  7652. if (erase) {
  7653. warnings.erase(E);
  7654. } else if (warning_is_error) {
  7655. _set_error(w.get_message() + " (warning treated as error)", w.line);
  7656. return ERR_PARSE_ERROR;
  7657. }
  7658. E = next;
  7659. }
  7660. #endif // DEBUG_ENABLED
  7661. return OK;
  7662. }
  7663. Error GDScriptParser::parse_bytecode(const Vector<uint8_t> &p_bytecode, const String &p_base_path, const String &p_self_path) {
  7664. clear();
  7665. self_path = p_self_path;
  7666. GDScriptTokenizerBuffer *tb = memnew(GDScriptTokenizerBuffer);
  7667. tb->set_code_buffer(p_bytecode);
  7668. tokenizer = tb;
  7669. Error ret = _parse(p_base_path);
  7670. memdelete(tb);
  7671. tokenizer = nullptr;
  7672. return ret;
  7673. }
  7674. Error GDScriptParser::parse(const String &p_code, const String &p_base_path, bool p_just_validate, const String &p_self_path, bool p_for_completion, Set<int> *r_safe_lines, bool p_dependencies_only) {
  7675. clear();
  7676. self_path = p_self_path;
  7677. GDScriptTokenizerText *tt = memnew(GDScriptTokenizerText);
  7678. tt->set_code(p_code);
  7679. validating = p_just_validate;
  7680. for_completion = p_for_completion;
  7681. dependencies_only = p_dependencies_only;
  7682. #ifdef DEBUG_ENABLED
  7683. safe_lines = r_safe_lines;
  7684. #endif // DEBUG_ENABLED
  7685. tokenizer = tt;
  7686. Error ret = _parse(p_base_path);
  7687. memdelete(tt);
  7688. tokenizer = nullptr;
  7689. return ret;
  7690. }
  7691. bool GDScriptParser::is_tool_script() const {
  7692. return (head && head->type == Node::TYPE_CLASS && static_cast<const ClassNode *>(head)->tool);
  7693. }
  7694. const GDScriptParser::Node *GDScriptParser::get_parse_tree() const {
  7695. return head;
  7696. }
  7697. void GDScriptParser::clear() {
  7698. while (list) {
  7699. Node *l = list;
  7700. list = list->next;
  7701. memdelete(l);
  7702. }
  7703. head = nullptr;
  7704. list = nullptr;
  7705. completion_type = COMPLETION_NONE;
  7706. completion_node = nullptr;
  7707. completion_class = nullptr;
  7708. completion_function = nullptr;
  7709. completion_block = nullptr;
  7710. current_block = nullptr;
  7711. current_class = nullptr;
  7712. completion_found = false;
  7713. rpc_mode = MultiplayerAPI::RPC_MODE_DISABLED;
  7714. current_function = nullptr;
  7715. validating = false;
  7716. for_completion = false;
  7717. error_set = false;
  7718. indent_level.clear();
  7719. indent_level.push_back(IndentLevel(0, 0));
  7720. error_line = 0;
  7721. error_column = 0;
  7722. pending_newline = -1;
  7723. parenthesis = 0;
  7724. current_export.type = Variant::NIL;
  7725. check_types = true;
  7726. dependencies_only = false;
  7727. dependencies.clear();
  7728. error = "";
  7729. #ifdef DEBUG_ENABLED
  7730. safe_lines = nullptr;
  7731. #endif // DEBUG_ENABLED
  7732. }
  7733. GDScriptParser::CompletionType GDScriptParser::get_completion_type() {
  7734. return completion_type;
  7735. }
  7736. StringName GDScriptParser::get_completion_cursor() {
  7737. return completion_cursor;
  7738. }
  7739. int GDScriptParser::get_completion_line() {
  7740. return completion_line;
  7741. }
  7742. Variant::Type GDScriptParser::get_completion_built_in_constant() {
  7743. return completion_built_in_constant;
  7744. }
  7745. GDScriptParser::Node *GDScriptParser::get_completion_node() {
  7746. return completion_node;
  7747. }
  7748. GDScriptParser::BlockNode *GDScriptParser::get_completion_block() {
  7749. return completion_block;
  7750. }
  7751. GDScriptParser::ClassNode *GDScriptParser::get_completion_class() {
  7752. return completion_class;
  7753. }
  7754. GDScriptParser::FunctionNode *GDScriptParser::get_completion_function() {
  7755. return completion_function;
  7756. }
  7757. int GDScriptParser::get_completion_argument_index() {
  7758. return completion_argument;
  7759. }
  7760. int GDScriptParser::get_completion_identifier_is_function() {
  7761. return completion_ident_is_call;
  7762. }
  7763. GDScriptParser::GDScriptParser() {
  7764. head = nullptr;
  7765. list = nullptr;
  7766. tokenizer = nullptr;
  7767. pending_newline = -1;
  7768. clear();
  7769. }
  7770. GDScriptParser::~GDScriptParser() {
  7771. clear();
  7772. }