gdscript_parser.cpp 280 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931
  1. /**************************************************************************/
  2. /* gdscript_parser.cpp */
  3. /**************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /**************************************************************************/
  8. /* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
  9. /* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
  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_CURSOR:
  4918. case GDScriptTokenizer::TK_IDENTIFIER: {
  4919. if (can_index) {
  4920. _set_error("Unexpected identifier.");
  4921. return false;
  4922. }
  4923. StringName id;
  4924. bool has_completion = _get_completable_identifier(COMPLETION_TYPE_HINT_INDEX, id);
  4925. if (id == StringName()) {
  4926. id = "@temp";
  4927. }
  4928. full_name += "." + id.operator String();
  4929. can_index = true;
  4930. if (has_completion) {
  4931. completion_cursor = full_name;
  4932. }
  4933. } break;
  4934. default: {
  4935. finished = true;
  4936. } break;
  4937. }
  4938. }
  4939. if (tokenizer->get_token(-1) == GDScriptTokenizer::TK_PERIOD) {
  4940. _set_error("Expected a subclass identifier.");
  4941. return false;
  4942. }
  4943. r_type.native_type = full_name;
  4944. }
  4945. return true;
  4946. }
  4947. GDScriptParser::DataType GDScriptParser::_resolve_type(const DataType &p_source, int p_line) {
  4948. if (!p_source.has_type) {
  4949. return p_source;
  4950. }
  4951. if (p_source.kind != DataType::UNRESOLVED) {
  4952. return p_source;
  4953. }
  4954. Vector<String> full_name = p_source.native_type.operator String().split(".", false);
  4955. int name_part = 0;
  4956. DataType result;
  4957. result.has_type = true;
  4958. while (name_part < full_name.size()) {
  4959. bool found = false;
  4960. StringName id = full_name[name_part];
  4961. DataType base_type = result;
  4962. ClassNode *p = nullptr;
  4963. if (name_part == 0) {
  4964. if (ScriptServer::is_global_class(id)) {
  4965. String script_path = ScriptServer::get_global_class_path(id);
  4966. if (script_path == self_path) {
  4967. result.kind = DataType::CLASS;
  4968. result.class_type = static_cast<ClassNode *>(head);
  4969. } else {
  4970. Ref<Script> script = ResourceLoader::load(script_path);
  4971. Ref<GDScript> gds = script;
  4972. if (gds.is_valid()) {
  4973. if (!gds->is_valid()) {
  4974. _set_error("The class \"" + id + "\" couldn't be fully loaded (script error or cyclic dependency).", p_line);
  4975. return DataType();
  4976. }
  4977. result.kind = DataType::GDSCRIPT;
  4978. result.script_type = gds;
  4979. } else if (script.is_valid()) {
  4980. result.kind = DataType::SCRIPT;
  4981. result.script_type = script;
  4982. } else {
  4983. _set_error("The class \"" + id + "\" was found in global scope, but its script couldn't be loaded.", p_line);
  4984. return DataType();
  4985. }
  4986. }
  4987. name_part++;
  4988. continue;
  4989. }
  4990. List<PropertyInfo> props;
  4991. ProjectSettings::get_singleton()->get_property_list(&props);
  4992. String singleton_path;
  4993. for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) {
  4994. String s = E->get().name;
  4995. if (!s.begins_with("autoload/")) {
  4996. continue;
  4997. }
  4998. String name = s.get_slice("/", 1);
  4999. if (name == id) {
  5000. singleton_path = ProjectSettings::get_singleton()->get(s);
  5001. if (singleton_path.begins_with("*")) {
  5002. singleton_path = singleton_path.right(1);
  5003. }
  5004. if (!singleton_path.begins_with("res://")) {
  5005. singleton_path = "res://" + singleton_path;
  5006. }
  5007. break;
  5008. }
  5009. }
  5010. if (!singleton_path.empty()) {
  5011. Ref<Script> script = ResourceLoader::load(singleton_path);
  5012. Ref<GDScript> gds = script;
  5013. if (gds.is_valid()) {
  5014. if (!gds->is_valid()) {
  5015. _set_error("Class '" + id + "' could not be fully loaded (script error or cyclic inheritance).", p_line);
  5016. return DataType();
  5017. }
  5018. result.kind = DataType::GDSCRIPT;
  5019. result.script_type = gds;
  5020. } else if (script.is_valid()) {
  5021. result.kind = DataType::SCRIPT;
  5022. result.script_type = script;
  5023. } else {
  5024. _set_error("Couldn't fully load singleton script '" + id + "' (possible cyclic reference or parse error).", p_line);
  5025. return DataType();
  5026. }
  5027. name_part++;
  5028. continue;
  5029. }
  5030. p = current_class;
  5031. } else if (base_type.kind == DataType::CLASS) {
  5032. p = base_type.class_type;
  5033. }
  5034. while (p) {
  5035. if (p->constant_expressions.has(id)) {
  5036. if (p->constant_expressions[id].expression->type != Node::TYPE_CONSTANT) {
  5037. _set_error("Parser bug: unresolved constant.", p_line);
  5038. ERR_FAIL_V(result);
  5039. }
  5040. const ConstantNode *cn = static_cast<const ConstantNode *>(p->constant_expressions[id].expression);
  5041. Ref<GDScript> gds = cn->value;
  5042. if (gds.is_valid()) {
  5043. result.kind = DataType::GDSCRIPT;
  5044. result.script_type = gds;
  5045. found = true;
  5046. } else {
  5047. Ref<Script> scr = cn->value;
  5048. if (scr.is_valid()) {
  5049. result.kind = DataType::SCRIPT;
  5050. result.script_type = scr;
  5051. found = true;
  5052. }
  5053. }
  5054. break;
  5055. }
  5056. // Inner classes
  5057. ClassNode *outer_class = p;
  5058. while (outer_class) {
  5059. if (outer_class->name == id) {
  5060. found = true;
  5061. result.kind = DataType::CLASS;
  5062. result.class_type = outer_class;
  5063. break;
  5064. }
  5065. for (int i = 0; i < outer_class->subclasses.size(); i++) {
  5066. if (outer_class->subclasses[i] == p) {
  5067. continue;
  5068. }
  5069. if (outer_class->subclasses[i]->name == id) {
  5070. found = true;
  5071. result.kind = DataType::CLASS;
  5072. result.class_type = outer_class->subclasses[i];
  5073. break;
  5074. }
  5075. }
  5076. if (found) {
  5077. break;
  5078. }
  5079. outer_class = outer_class->owner;
  5080. }
  5081. if (!found && p->base_type.kind == DataType::CLASS) {
  5082. p = p->base_type.class_type;
  5083. } else {
  5084. base_type = p->base_type;
  5085. break;
  5086. }
  5087. }
  5088. // Still look for class constants in parent scripts
  5089. if (!found && (base_type.kind == DataType::GDSCRIPT || base_type.kind == DataType::SCRIPT)) {
  5090. Ref<Script> scr = base_type.script_type;
  5091. ERR_FAIL_COND_V(scr.is_null(), result);
  5092. while (scr.is_valid()) {
  5093. Map<StringName, Variant> constants;
  5094. scr->get_constants(&constants);
  5095. if (constants.has(id)) {
  5096. Ref<GDScript> gds = constants[id];
  5097. if (gds.is_valid()) {
  5098. result.kind = DataType::GDSCRIPT;
  5099. result.script_type = gds;
  5100. found = true;
  5101. } else {
  5102. Ref<Script> scr2 = constants[id];
  5103. if (scr2.is_valid()) {
  5104. result.kind = DataType::SCRIPT;
  5105. result.script_type = scr2;
  5106. found = true;
  5107. }
  5108. }
  5109. }
  5110. if (found) {
  5111. break;
  5112. } else {
  5113. scr = scr->get_base_script();
  5114. }
  5115. }
  5116. }
  5117. if (!found && !for_completion) {
  5118. String base;
  5119. if (name_part == 0) {
  5120. base = "self";
  5121. } else {
  5122. base = result.to_string();
  5123. }
  5124. _set_error("The identifier \"" + String(id) +
  5125. "\" isn't a valid type (not a script or class), or couldn't be found on base \"" + base + "\".",
  5126. p_line);
  5127. return DataType();
  5128. }
  5129. name_part++;
  5130. }
  5131. return result;
  5132. }
  5133. GDScriptParser::DataType GDScriptParser::_type_from_variant(const Variant &p_value) const {
  5134. DataType result;
  5135. result.has_type = true;
  5136. result.is_constant = true;
  5137. result.kind = DataType::BUILTIN;
  5138. result.builtin_type = p_value.get_type();
  5139. if (result.builtin_type == Variant::OBJECT) {
  5140. Object *obj = p_value.operator Object *();
  5141. if (!obj) {
  5142. return DataType();
  5143. }
  5144. result.native_type = obj->get_class_name();
  5145. Ref<Script> scr = p_value;
  5146. if (scr.is_valid()) {
  5147. result.is_meta_type = true;
  5148. } else {
  5149. result.is_meta_type = false;
  5150. scr = obj->get_script();
  5151. }
  5152. if (scr.is_valid()) {
  5153. result.script_type = scr;
  5154. Ref<GDScript> gds = scr;
  5155. if (gds.is_valid()) {
  5156. result.kind = DataType::GDSCRIPT;
  5157. } else {
  5158. result.kind = DataType::SCRIPT;
  5159. }
  5160. result.native_type = scr->get_instance_base_type();
  5161. } else {
  5162. result.kind = DataType::NATIVE;
  5163. }
  5164. }
  5165. return result;
  5166. }
  5167. GDScriptParser::DataType GDScriptParser::_type_from_property(const PropertyInfo &p_property, bool p_nil_is_variant) const {
  5168. DataType ret;
  5169. if (p_property.type == Variant::NIL && (p_nil_is_variant || (p_property.usage & PROPERTY_USAGE_NIL_IS_VARIANT))) {
  5170. // Variant
  5171. return ret;
  5172. }
  5173. ret.has_type = true;
  5174. ret.builtin_type = p_property.type;
  5175. if (p_property.type == Variant::OBJECT) {
  5176. ret.kind = DataType::NATIVE;
  5177. ret.native_type = p_property.class_name == StringName() ? "Object" : p_property.class_name;
  5178. } else {
  5179. ret.kind = DataType::BUILTIN;
  5180. }
  5181. return ret;
  5182. }
  5183. GDScriptParser::DataType GDScriptParser::_type_from_gdtype(const GDScriptDataType &p_gdtype) const {
  5184. DataType result;
  5185. if (!p_gdtype.has_type) {
  5186. return result;
  5187. }
  5188. result.has_type = true;
  5189. result.builtin_type = p_gdtype.builtin_type;
  5190. result.native_type = p_gdtype.native_type;
  5191. result.script_type = Ref<Script>(p_gdtype.script_type);
  5192. switch (p_gdtype.kind) {
  5193. case GDScriptDataType::UNINITIALIZED: {
  5194. ERR_PRINT("Uninitialized datatype. Please report a bug.");
  5195. } break;
  5196. case GDScriptDataType::BUILTIN: {
  5197. result.kind = DataType::BUILTIN;
  5198. } break;
  5199. case GDScriptDataType::NATIVE: {
  5200. result.kind = DataType::NATIVE;
  5201. } break;
  5202. case GDScriptDataType::GDSCRIPT: {
  5203. result.kind = DataType::GDSCRIPT;
  5204. } break;
  5205. case GDScriptDataType::SCRIPT: {
  5206. result.kind = DataType::SCRIPT;
  5207. } break;
  5208. }
  5209. return result;
  5210. }
  5211. GDScriptParser::DataType GDScriptParser::_get_operation_type(const Variant::Operator p_op, const DataType &p_a, const DataType &p_b, bool &r_valid) const {
  5212. if (!p_a.has_type || !p_b.has_type) {
  5213. r_valid = true;
  5214. return DataType();
  5215. }
  5216. Variant::Type a_type = p_a.kind == DataType::BUILTIN ? p_a.builtin_type : Variant::OBJECT;
  5217. Variant::Type b_type = p_b.kind == DataType::BUILTIN ? p_b.builtin_type : Variant::OBJECT;
  5218. Variant a;
  5219. REF a_ref;
  5220. if (a_type == Variant::OBJECT) {
  5221. a_ref.instance();
  5222. a = a_ref;
  5223. } else {
  5224. Variant::CallError err;
  5225. a = Variant::construct(a_type, nullptr, 0, err);
  5226. if (err.error != Variant::CallError::CALL_OK) {
  5227. r_valid = false;
  5228. return DataType();
  5229. }
  5230. }
  5231. Variant b;
  5232. REF b_ref;
  5233. if (b_type == Variant::OBJECT) {
  5234. b_ref.instance();
  5235. b = b_ref;
  5236. } else {
  5237. Variant::CallError err;
  5238. b = Variant::construct(b_type, nullptr, 0, err);
  5239. if (err.error != Variant::CallError::CALL_OK) {
  5240. r_valid = false;
  5241. return DataType();
  5242. }
  5243. }
  5244. // Avoid division by zero
  5245. if (a_type == Variant::INT || a_type == Variant::REAL) {
  5246. Variant::evaluate(Variant::OP_ADD, a, 1, a, r_valid);
  5247. }
  5248. if (b_type == Variant::INT || b_type == Variant::REAL) {
  5249. Variant::evaluate(Variant::OP_ADD, b, 1, b, r_valid);
  5250. }
  5251. if (a_type == Variant::STRING && b_type != Variant::ARRAY) {
  5252. a = "%s"; // Work around for formatting operator (%)
  5253. }
  5254. Variant ret;
  5255. Variant::evaluate(p_op, a, b, ret, r_valid);
  5256. if (r_valid) {
  5257. return _type_from_variant(ret);
  5258. }
  5259. return DataType();
  5260. }
  5261. Variant::Operator GDScriptParser::_get_variant_operation(const OperatorNode::Operator &p_op) const {
  5262. switch (p_op) {
  5263. case OperatorNode::OP_NEG: {
  5264. return Variant::OP_NEGATE;
  5265. } break;
  5266. case OperatorNode::OP_POS: {
  5267. return Variant::OP_POSITIVE;
  5268. } break;
  5269. case OperatorNode::OP_NOT: {
  5270. return Variant::OP_NOT;
  5271. } break;
  5272. case OperatorNode::OP_BIT_INVERT: {
  5273. return Variant::OP_BIT_NEGATE;
  5274. } break;
  5275. case OperatorNode::OP_IN: {
  5276. return Variant::OP_IN;
  5277. } break;
  5278. case OperatorNode::OP_EQUAL: {
  5279. return Variant::OP_EQUAL;
  5280. } break;
  5281. case OperatorNode::OP_NOT_EQUAL: {
  5282. return Variant::OP_NOT_EQUAL;
  5283. } break;
  5284. case OperatorNode::OP_LESS: {
  5285. return Variant::OP_LESS;
  5286. } break;
  5287. case OperatorNode::OP_LESS_EQUAL: {
  5288. return Variant::OP_LESS_EQUAL;
  5289. } break;
  5290. case OperatorNode::OP_GREATER: {
  5291. return Variant::OP_GREATER;
  5292. } break;
  5293. case OperatorNode::OP_GREATER_EQUAL: {
  5294. return Variant::OP_GREATER_EQUAL;
  5295. } break;
  5296. case OperatorNode::OP_AND: {
  5297. return Variant::OP_AND;
  5298. } break;
  5299. case OperatorNode::OP_OR: {
  5300. return Variant::OP_OR;
  5301. } break;
  5302. case OperatorNode::OP_ASSIGN_ADD:
  5303. case OperatorNode::OP_ADD: {
  5304. return Variant::OP_ADD;
  5305. } break;
  5306. case OperatorNode::OP_ASSIGN_SUB:
  5307. case OperatorNode::OP_SUB: {
  5308. return Variant::OP_SUBTRACT;
  5309. } break;
  5310. case OperatorNode::OP_ASSIGN_MUL:
  5311. case OperatorNode::OP_MUL: {
  5312. return Variant::OP_MULTIPLY;
  5313. } break;
  5314. case OperatorNode::OP_ASSIGN_DIV:
  5315. case OperatorNode::OP_DIV: {
  5316. return Variant::OP_DIVIDE;
  5317. } break;
  5318. case OperatorNode::OP_ASSIGN_MOD:
  5319. case OperatorNode::OP_MOD: {
  5320. return Variant::OP_MODULE;
  5321. } break;
  5322. case OperatorNode::OP_ASSIGN_BIT_AND:
  5323. case OperatorNode::OP_BIT_AND: {
  5324. return Variant::OP_BIT_AND;
  5325. } break;
  5326. case OperatorNode::OP_ASSIGN_BIT_OR:
  5327. case OperatorNode::OP_BIT_OR: {
  5328. return Variant::OP_BIT_OR;
  5329. } break;
  5330. case OperatorNode::OP_ASSIGN_BIT_XOR:
  5331. case OperatorNode::OP_BIT_XOR: {
  5332. return Variant::OP_BIT_XOR;
  5333. } break;
  5334. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  5335. case OperatorNode::OP_SHIFT_LEFT: {
  5336. return Variant::OP_SHIFT_LEFT;
  5337. }
  5338. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  5339. case OperatorNode::OP_SHIFT_RIGHT: {
  5340. return Variant::OP_SHIFT_RIGHT;
  5341. }
  5342. default: {
  5343. return Variant::OP_MAX;
  5344. } break;
  5345. }
  5346. }
  5347. bool GDScriptParser::_is_type_compatible(const DataType &p_container, const DataType &p_expression, bool p_allow_implicit_conversion) const {
  5348. // Ignore for completion
  5349. if (!check_types || for_completion) {
  5350. return true;
  5351. }
  5352. // Can't test if not all have type
  5353. if (!p_container.has_type || !p_expression.has_type) {
  5354. return true;
  5355. }
  5356. // Should never get here unresolved
  5357. ERR_FAIL_COND_V(p_container.kind == DataType::UNRESOLVED, false);
  5358. ERR_FAIL_COND_V(p_expression.kind == DataType::UNRESOLVED, false);
  5359. if (p_container.kind == DataType::BUILTIN && p_expression.kind == DataType::BUILTIN) {
  5360. bool valid = p_container.builtin_type == p_expression.builtin_type;
  5361. if (p_allow_implicit_conversion) {
  5362. valid = valid || Variant::can_convert_strict(p_expression.builtin_type, p_container.builtin_type);
  5363. }
  5364. return valid;
  5365. }
  5366. if (p_container.kind == DataType::BUILTIN && p_container.builtin_type == Variant::OBJECT) {
  5367. // Object built-in is a special case, it's compatible with any object and with null
  5368. if (p_expression.kind == DataType::BUILTIN) {
  5369. return p_expression.builtin_type == Variant::NIL;
  5370. }
  5371. // If it's not a built-in, must be an object
  5372. return true;
  5373. }
  5374. if (p_container.kind == DataType::BUILTIN || (p_expression.kind == DataType::BUILTIN && p_expression.builtin_type != Variant::NIL)) {
  5375. // Can't mix built-ins with objects
  5376. return false;
  5377. }
  5378. // From now on everything is objects, check polymorphism
  5379. // The container must be the same class or a superclass of the expression
  5380. if (p_expression.kind == DataType::BUILTIN && p_expression.builtin_type == Variant::NIL) {
  5381. // Null can be assigned to object types
  5382. return true;
  5383. }
  5384. StringName expr_native;
  5385. Ref<Script> expr_script;
  5386. ClassNode *expr_class = nullptr;
  5387. switch (p_expression.kind) {
  5388. case DataType::NATIVE: {
  5389. if (p_container.kind != DataType::NATIVE) {
  5390. // Non-native type can't be a superclass of a native type
  5391. return false;
  5392. }
  5393. if (p_expression.is_meta_type) {
  5394. expr_native = GDScriptNativeClass::get_class_static();
  5395. } else {
  5396. expr_native = p_expression.native_type;
  5397. }
  5398. } break;
  5399. case DataType::SCRIPT:
  5400. case DataType::GDSCRIPT: {
  5401. if (p_container.kind == DataType::CLASS) {
  5402. // This cannot be resolved without cyclic dependencies, so just bail out
  5403. return false;
  5404. }
  5405. if (p_expression.is_meta_type) {
  5406. expr_native = p_expression.script_type->get_class_name();
  5407. } else {
  5408. expr_script = p_expression.script_type;
  5409. expr_native = expr_script->get_instance_base_type();
  5410. }
  5411. } break;
  5412. case DataType::CLASS: {
  5413. if (p_expression.is_meta_type) {
  5414. expr_native = GDScript::get_class_static();
  5415. } else {
  5416. expr_class = p_expression.class_type;
  5417. ClassNode *base = expr_class;
  5418. while (base->base_type.kind == DataType::CLASS) {
  5419. base = base->base_type.class_type;
  5420. }
  5421. expr_native = base->base_type.native_type;
  5422. expr_script = base->base_type.script_type;
  5423. }
  5424. } break;
  5425. case DataType::BUILTIN: // Already handled above
  5426. case DataType::UNRESOLVED: // Not allowed, see above
  5427. break;
  5428. }
  5429. // Some classes are prefixed with `_` internally
  5430. if (!ClassDB::class_exists(expr_native)) {
  5431. expr_native = "_" + expr_native;
  5432. }
  5433. switch (p_container.kind) {
  5434. case DataType::NATIVE: {
  5435. if (p_container.is_meta_type) {
  5436. return ClassDB::is_parent_class(expr_native, GDScriptNativeClass::get_class_static());
  5437. } else {
  5438. StringName container_native = ClassDB::class_exists(p_container.native_type) ? p_container.native_type : StringName("_" + p_container.native_type);
  5439. return ClassDB::is_parent_class(expr_native, container_native);
  5440. }
  5441. } break;
  5442. case DataType::SCRIPT:
  5443. case DataType::GDSCRIPT: {
  5444. if (p_container.is_meta_type) {
  5445. return ClassDB::is_parent_class(expr_native, GDScript::get_class_static());
  5446. }
  5447. if (expr_class == head && p_container.script_type->get_path() == self_path) {
  5448. // Special case: container is self script and expression is self
  5449. return true;
  5450. }
  5451. while (expr_script.is_valid()) {
  5452. if (expr_script == p_container.script_type) {
  5453. return true;
  5454. }
  5455. expr_script = expr_script->get_base_script();
  5456. }
  5457. return false;
  5458. } break;
  5459. case DataType::CLASS: {
  5460. if (p_container.is_meta_type) {
  5461. return ClassDB::is_parent_class(expr_native, GDScript::get_class_static());
  5462. }
  5463. if (p_container.class_type == head && expr_script.is_valid() && expr_script->get_path() == self_path) {
  5464. // Special case: container is self and expression is self script
  5465. return true;
  5466. }
  5467. while (expr_class) {
  5468. if (expr_class == p_container.class_type) {
  5469. return true;
  5470. }
  5471. expr_class = expr_class->base_type.class_type;
  5472. }
  5473. return false;
  5474. } break;
  5475. case DataType::BUILTIN: // Already handled above
  5476. case DataType::UNRESOLVED: // Not allowed, see above
  5477. break;
  5478. }
  5479. return false;
  5480. }
  5481. GDScriptParser::Node *GDScriptParser::_get_default_value_for_type(const DataType &p_type, int p_line) {
  5482. Node *result;
  5483. if (p_type.has_type && p_type.kind == DataType::BUILTIN && p_type.builtin_type != Variant::NIL && p_type.builtin_type != Variant::OBJECT) {
  5484. if (p_type.builtin_type == Variant::ARRAY) {
  5485. result = alloc_node<ArrayNode>();
  5486. } else if (p_type.builtin_type == Variant::DICTIONARY) {
  5487. result = alloc_node<DictionaryNode>();
  5488. } else {
  5489. ConstantNode *c = alloc_node<ConstantNode>();
  5490. Variant::CallError err;
  5491. c->value = Variant::construct(p_type.builtin_type, nullptr, 0, err);
  5492. result = c;
  5493. }
  5494. } else {
  5495. ConstantNode *c = alloc_node<ConstantNode>();
  5496. c->value = Variant();
  5497. result = c;
  5498. }
  5499. result->line = p_line;
  5500. return result;
  5501. }
  5502. GDScriptParser::DataType GDScriptParser::_reduce_node_type(Node *p_node) {
  5503. #ifdef DEBUG_ENABLED
  5504. if (p_node->get_datatype().has_type && p_node->type != Node::TYPE_ARRAY && p_node->type != Node::TYPE_DICTIONARY) {
  5505. #else
  5506. if (p_node->get_datatype().has_type) {
  5507. #endif
  5508. return p_node->get_datatype();
  5509. }
  5510. DataType node_type;
  5511. switch (p_node->type) {
  5512. case Node::TYPE_CONSTANT: {
  5513. node_type = _type_from_variant(static_cast<ConstantNode *>(p_node)->value);
  5514. } break;
  5515. case Node::TYPE_TYPE: {
  5516. TypeNode *tn = static_cast<TypeNode *>(p_node);
  5517. node_type.has_type = true;
  5518. node_type.is_meta_type = true;
  5519. node_type.kind = DataType::BUILTIN;
  5520. node_type.builtin_type = tn->vtype;
  5521. } break;
  5522. case Node::TYPE_ARRAY: {
  5523. node_type.has_type = true;
  5524. node_type.kind = DataType::BUILTIN;
  5525. node_type.builtin_type = Variant::ARRAY;
  5526. #ifdef DEBUG_ENABLED
  5527. // Check stuff inside the array
  5528. ArrayNode *an = static_cast<ArrayNode *>(p_node);
  5529. for (int i = 0; i < an->elements.size(); i++) {
  5530. _reduce_node_type(an->elements[i]);
  5531. }
  5532. #endif // DEBUG_ENABLED
  5533. } break;
  5534. case Node::TYPE_DICTIONARY: {
  5535. node_type.has_type = true;
  5536. node_type.kind = DataType::BUILTIN;
  5537. node_type.builtin_type = Variant::DICTIONARY;
  5538. #ifdef DEBUG_ENABLED
  5539. // Check stuff inside the dictionarty
  5540. DictionaryNode *dn = static_cast<DictionaryNode *>(p_node);
  5541. for (int i = 0; i < dn->elements.size(); i++) {
  5542. _reduce_node_type(dn->elements[i].key);
  5543. _reduce_node_type(dn->elements[i].value);
  5544. }
  5545. #endif // DEBUG_ENABLED
  5546. } break;
  5547. case Node::TYPE_SELF: {
  5548. node_type.has_type = true;
  5549. node_type.kind = DataType::CLASS;
  5550. node_type.class_type = current_class;
  5551. node_type.is_constant = true;
  5552. } break;
  5553. case Node::TYPE_IDENTIFIER: {
  5554. IdentifierNode *id = static_cast<IdentifierNode *>(p_node);
  5555. if (id->declared_block) {
  5556. node_type = id->declared_block->variables[id->name]->get_datatype();
  5557. id->declared_block->variables[id->name]->usages += 1;
  5558. } else if (id->name == "#match_value") {
  5559. // It's a special id just for the match statetement, ignore
  5560. break;
  5561. } else if (current_function && current_function->arguments.find(id->name) >= 0) {
  5562. int idx = current_function->arguments.find(id->name);
  5563. node_type = current_function->argument_types[idx];
  5564. } else {
  5565. node_type = _reduce_identifier_type(nullptr, id->name, id->line, false);
  5566. }
  5567. } break;
  5568. case Node::TYPE_CAST: {
  5569. CastNode *cn = static_cast<CastNode *>(p_node);
  5570. DataType source_type = _reduce_node_type(cn->source_node);
  5571. cn->cast_type = _resolve_type(cn->cast_type, cn->line);
  5572. if (source_type.has_type) {
  5573. bool valid = false;
  5574. if (check_types) {
  5575. if (cn->cast_type.kind == DataType::BUILTIN && source_type.kind == DataType::BUILTIN) {
  5576. valid = Variant::can_convert(source_type.builtin_type, cn->cast_type.builtin_type);
  5577. }
  5578. if (cn->cast_type.kind != DataType::BUILTIN && source_type.kind != DataType::BUILTIN) {
  5579. valid = _is_type_compatible(cn->cast_type, source_type) || _is_type_compatible(source_type, cn->cast_type);
  5580. }
  5581. if (!valid) {
  5582. _set_error("Invalid cast. Cannot convert from \"" + source_type.to_string() +
  5583. "\" to \"" + cn->cast_type.to_string() + "\".",
  5584. cn->line);
  5585. return DataType();
  5586. }
  5587. }
  5588. } else {
  5589. #ifdef DEBUG_ENABLED
  5590. _add_warning(GDScriptWarning::UNSAFE_CAST, cn->line, cn->cast_type.to_string());
  5591. #endif // DEBUG_ENABLED
  5592. _mark_line_as_unsafe(cn->line);
  5593. }
  5594. node_type = cn->cast_type;
  5595. } break;
  5596. case Node::TYPE_OPERATOR: {
  5597. OperatorNode *op = static_cast<OperatorNode *>(p_node);
  5598. switch (op->op) {
  5599. case OperatorNode::OP_CALL:
  5600. case OperatorNode::OP_PARENT_CALL: {
  5601. node_type = _reduce_function_call_type(op);
  5602. } break;
  5603. case OperatorNode::OP_YIELD: {
  5604. if (op->arguments.size() == 2) {
  5605. DataType base_type = _reduce_node_type(op->arguments[0]);
  5606. DataType signal_type = _reduce_node_type(op->arguments[1]);
  5607. // TODO: Check if signal exists when it's a constant
  5608. if (base_type.has_type && base_type.kind == DataType::BUILTIN && base_type.builtin_type != Variant::NIL && base_type.builtin_type != Variant::OBJECT) {
  5609. _set_error("The first argument of \"yield()\" must be an object.", op->line);
  5610. return DataType();
  5611. }
  5612. if (signal_type.has_type && (signal_type.kind != DataType::BUILTIN || signal_type.builtin_type != Variant::STRING)) {
  5613. _set_error("The second argument of \"yield()\" must be a string.", op->line);
  5614. return DataType();
  5615. }
  5616. }
  5617. // yield can return anything
  5618. node_type.has_type = false;
  5619. } break;
  5620. case OperatorNode::OP_IS:
  5621. case OperatorNode::OP_IS_BUILTIN: {
  5622. if (op->arguments.size() != 2) {
  5623. _set_error("Parser bug: binary operation without 2 arguments.", op->line);
  5624. ERR_FAIL_V(DataType());
  5625. }
  5626. DataType value_type = _reduce_node_type(op->arguments[0]);
  5627. DataType type_type = _reduce_node_type(op->arguments[1]);
  5628. if (check_types && type_type.has_type) {
  5629. if (!type_type.is_meta_type && (type_type.kind != DataType::NATIVE || !ClassDB::is_parent_class(type_type.native_type, "Script"))) {
  5630. _set_error("Invalid \"is\" test: the right operand isn't a type (neither a native type nor a script).", op->line);
  5631. return DataType();
  5632. }
  5633. type_type.is_meta_type = false; // Test the actual type
  5634. if (!_is_type_compatible(type_type, value_type) && !_is_type_compatible(value_type, type_type)) {
  5635. if (op->op == OperatorNode::OP_IS) {
  5636. _set_error("A value of type \"" + value_type.to_string() + "\" will never be an instance of \"" + type_type.to_string() + "\".", op->line);
  5637. } else {
  5638. _set_error("A value of type \"" + value_type.to_string() + "\" will never be of type \"" + type_type.to_string() + "\".", op->line);
  5639. }
  5640. return DataType();
  5641. }
  5642. }
  5643. node_type.has_type = true;
  5644. node_type.is_constant = true;
  5645. node_type.is_meta_type = false;
  5646. node_type.kind = DataType::BUILTIN;
  5647. node_type.builtin_type = Variant::BOOL;
  5648. } break;
  5649. // Unary operators
  5650. case OperatorNode::OP_NEG:
  5651. case OperatorNode::OP_POS:
  5652. case OperatorNode::OP_NOT:
  5653. case OperatorNode::OP_BIT_INVERT: {
  5654. DataType argument_type = _reduce_node_type(op->arguments[0]);
  5655. if (!argument_type.has_type) {
  5656. break;
  5657. }
  5658. Variant::Operator var_op = _get_variant_operation(op->op);
  5659. bool valid = false;
  5660. node_type = _get_operation_type(var_op, argument_type, argument_type, valid);
  5661. if (check_types && !valid) {
  5662. _set_error("Invalid operand type (\"" + argument_type.to_string() +
  5663. "\") to unary operator \"" + Variant::get_operator_name(var_op) + "\".",
  5664. op->line, op->column);
  5665. return DataType();
  5666. }
  5667. } break;
  5668. // Binary operators
  5669. case OperatorNode::OP_IN:
  5670. case OperatorNode::OP_EQUAL:
  5671. case OperatorNode::OP_NOT_EQUAL:
  5672. case OperatorNode::OP_LESS:
  5673. case OperatorNode::OP_LESS_EQUAL:
  5674. case OperatorNode::OP_GREATER:
  5675. case OperatorNode::OP_GREATER_EQUAL:
  5676. case OperatorNode::OP_AND:
  5677. case OperatorNode::OP_OR:
  5678. case OperatorNode::OP_ADD:
  5679. case OperatorNode::OP_SUB:
  5680. case OperatorNode::OP_MUL:
  5681. case OperatorNode::OP_DIV:
  5682. case OperatorNode::OP_MOD:
  5683. case OperatorNode::OP_SHIFT_LEFT:
  5684. case OperatorNode::OP_SHIFT_RIGHT:
  5685. case OperatorNode::OP_BIT_AND:
  5686. case OperatorNode::OP_BIT_OR:
  5687. case OperatorNode::OP_BIT_XOR: {
  5688. if (op->arguments.size() != 2) {
  5689. _set_error("Parser bug: binary operation without 2 arguments.", op->line);
  5690. ERR_FAIL_V(DataType());
  5691. }
  5692. DataType argument_a_type = _reduce_node_type(op->arguments[0]);
  5693. DataType argument_b_type = _reduce_node_type(op->arguments[1]);
  5694. if (!argument_a_type.has_type || !argument_b_type.has_type) {
  5695. _mark_line_as_unsafe(op->line);
  5696. break;
  5697. }
  5698. Variant::Operator var_op = _get_variant_operation(op->op);
  5699. bool valid = false;
  5700. node_type = _get_operation_type(var_op, argument_a_type, argument_b_type, valid);
  5701. if (check_types && !valid) {
  5702. _set_error("Invalid operand types (\"" + argument_a_type.to_string() + "\" and \"" +
  5703. argument_b_type.to_string() + "\") to operator \"" + Variant::get_operator_name(var_op) + "\".",
  5704. op->line, op->column);
  5705. return DataType();
  5706. }
  5707. #ifdef DEBUG_ENABLED
  5708. if (var_op == Variant::OP_DIVIDE && argument_a_type.kind == DataType::BUILTIN && argument_a_type.builtin_type == Variant::INT &&
  5709. argument_b_type.kind == DataType::BUILTIN && argument_b_type.builtin_type == Variant::INT) {
  5710. _add_warning(GDScriptWarning::INTEGER_DIVISION, op->line);
  5711. }
  5712. #endif // DEBUG_ENABLED
  5713. } break;
  5714. // Ternary operators
  5715. case OperatorNode::OP_TERNARY_IF: {
  5716. if (op->arguments.size() != 3) {
  5717. _set_error("Parser bug: ternary operation without 3 arguments.");
  5718. ERR_FAIL_V(DataType());
  5719. }
  5720. DataType true_type = _reduce_node_type(op->arguments[1]);
  5721. DataType false_type = _reduce_node_type(op->arguments[2]);
  5722. // Check arguments[0] errors.
  5723. _reduce_node_type(op->arguments[0]);
  5724. // If types are equal, then the expression is of the same type
  5725. // If they are compatible, return the broader type
  5726. if (true_type == false_type || _is_type_compatible(true_type, false_type)) {
  5727. node_type = true_type;
  5728. } else if (_is_type_compatible(false_type, true_type)) {
  5729. node_type = false_type;
  5730. } else {
  5731. #ifdef DEBUG_ENABLED
  5732. _add_warning(GDScriptWarning::INCOMPATIBLE_TERNARY, op->line);
  5733. #endif // DEBUG_ENABLED
  5734. }
  5735. } break;
  5736. // Assignment should never happen within an expression
  5737. case OperatorNode::OP_ASSIGN:
  5738. case OperatorNode::OP_ASSIGN_ADD:
  5739. case OperatorNode::OP_ASSIGN_SUB:
  5740. case OperatorNode::OP_ASSIGN_MUL:
  5741. case OperatorNode::OP_ASSIGN_DIV:
  5742. case OperatorNode::OP_ASSIGN_MOD:
  5743. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  5744. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  5745. case OperatorNode::OP_ASSIGN_BIT_AND:
  5746. case OperatorNode::OP_ASSIGN_BIT_OR:
  5747. case OperatorNode::OP_ASSIGN_BIT_XOR:
  5748. case OperatorNode::OP_INIT_ASSIGN: {
  5749. _set_error("Assignment inside an expression isn't allowed (parser bug?).", op->line);
  5750. return DataType();
  5751. } break;
  5752. case OperatorNode::OP_INDEX_NAMED: {
  5753. if (op->arguments.size() != 2) {
  5754. _set_error("Parser bug: named index with invalid arguments.", op->line);
  5755. ERR_FAIL_V(DataType());
  5756. }
  5757. if (op->arguments[1]->type != Node::TYPE_IDENTIFIER) {
  5758. _set_error("Parser bug: named index without identifier argument.", op->line);
  5759. ERR_FAIL_V(DataType());
  5760. }
  5761. DataType base_type = _reduce_node_type(op->arguments[0]);
  5762. IdentifierNode *member_id = static_cast<IdentifierNode *>(op->arguments[1]);
  5763. if (base_type.has_type) {
  5764. if (check_types && base_type.kind == DataType::BUILTIN) {
  5765. // Variant type, just test if it's possible
  5766. DataType result;
  5767. switch (base_type.builtin_type) {
  5768. case Variant::NIL:
  5769. case Variant::DICTIONARY: {
  5770. result.has_type = false;
  5771. } break;
  5772. default: {
  5773. Variant::CallError err;
  5774. Variant temp = Variant::construct(base_type.builtin_type, nullptr, 0, err);
  5775. bool valid = false;
  5776. Variant res = temp.get(member_id->name.operator String(), &valid);
  5777. if (valid) {
  5778. result = _type_from_variant(res);
  5779. } else if (check_types) {
  5780. _set_error("Can't get index \"" + String(member_id->name.operator String()) + "\" on base \"" +
  5781. base_type.to_string() + "\".",
  5782. op->line);
  5783. return DataType();
  5784. }
  5785. } break;
  5786. }
  5787. result.is_constant = false;
  5788. node_type = result;
  5789. } else {
  5790. node_type = _reduce_identifier_type(&base_type, member_id->name, op->line, true);
  5791. #ifdef DEBUG_ENABLED
  5792. if (!node_type.has_type) {
  5793. _mark_line_as_unsafe(op->line);
  5794. _add_warning(GDScriptWarning::UNSAFE_PROPERTY_ACCESS, op->line, member_id->name.operator String(), base_type.to_string());
  5795. }
  5796. #endif // DEBUG_ENABLED
  5797. }
  5798. } else {
  5799. _mark_line_as_unsafe(op->line);
  5800. }
  5801. if (error_set) {
  5802. return DataType();
  5803. }
  5804. } break;
  5805. case OperatorNode::OP_INDEX: {
  5806. if (op->arguments[1]->type == Node::TYPE_CONSTANT) {
  5807. ConstantNode *cn = static_cast<ConstantNode *>(op->arguments[1]);
  5808. if (cn->value.get_type() == Variant::STRING) {
  5809. // Treat this as named indexing
  5810. IdentifierNode *id = alloc_node<IdentifierNode>();
  5811. id->name = cn->value.operator StringName();
  5812. id->datatype = cn->datatype;
  5813. op->op = OperatorNode::OP_INDEX_NAMED;
  5814. op->arguments.write[1] = id;
  5815. return _reduce_node_type(op);
  5816. }
  5817. }
  5818. DataType base_type = _reduce_node_type(op->arguments[0]);
  5819. DataType index_type = _reduce_node_type(op->arguments[1]);
  5820. if (!base_type.has_type) {
  5821. _mark_line_as_unsafe(op->line);
  5822. break;
  5823. }
  5824. if (check_types && index_type.has_type) {
  5825. if (base_type.kind == DataType::BUILTIN) {
  5826. // Check if indexing is valid
  5827. bool error = index_type.kind != DataType::BUILTIN && base_type.builtin_type != Variant::DICTIONARY;
  5828. if (!error) {
  5829. switch (base_type.builtin_type) {
  5830. // Expect int or real as index
  5831. case Variant::POOL_BYTE_ARRAY:
  5832. case Variant::POOL_COLOR_ARRAY:
  5833. case Variant::POOL_INT_ARRAY:
  5834. case Variant::POOL_REAL_ARRAY:
  5835. case Variant::POOL_STRING_ARRAY:
  5836. case Variant::POOL_VECTOR2_ARRAY:
  5837. case Variant::POOL_VECTOR3_ARRAY:
  5838. case Variant::ARRAY:
  5839. case Variant::STRING: {
  5840. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::REAL;
  5841. } break;
  5842. // Expect String only
  5843. case Variant::RECT2:
  5844. case Variant::PLANE:
  5845. case Variant::QUAT:
  5846. case Variant::AABB:
  5847. case Variant::OBJECT: {
  5848. error = index_type.builtin_type != Variant::STRING;
  5849. } break;
  5850. // Expect String or number
  5851. case Variant::VECTOR2:
  5852. case Variant::VECTOR3:
  5853. case Variant::TRANSFORM2D:
  5854. case Variant::BASIS:
  5855. case Variant::TRANSFORM: {
  5856. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::REAL &&
  5857. index_type.builtin_type != Variant::STRING;
  5858. } break;
  5859. // Expect String or int
  5860. case Variant::COLOR: {
  5861. error = index_type.builtin_type != Variant::INT && index_type.builtin_type != Variant::STRING;
  5862. } break;
  5863. default: {
  5864. }
  5865. }
  5866. }
  5867. if (error) {
  5868. _set_error("Invalid index type (" + index_type.to_string() + ") for base \"" + base_type.to_string() + "\".",
  5869. op->line);
  5870. return DataType();
  5871. }
  5872. if (op->arguments[1]->type == GDScriptParser::Node::TYPE_CONSTANT) {
  5873. ConstantNode *cn = static_cast<ConstantNode *>(op->arguments[1]);
  5874. // Index is a constant, just try it if possible
  5875. switch (base_type.builtin_type) {
  5876. // Arrays/string have variable indexing, can't test directly
  5877. case Variant::STRING:
  5878. case Variant::ARRAY:
  5879. case Variant::DICTIONARY:
  5880. case Variant::POOL_BYTE_ARRAY:
  5881. case Variant::POOL_COLOR_ARRAY:
  5882. case Variant::POOL_INT_ARRAY:
  5883. case Variant::POOL_REAL_ARRAY:
  5884. case Variant::POOL_STRING_ARRAY:
  5885. case Variant::POOL_VECTOR2_ARRAY:
  5886. case Variant::POOL_VECTOR3_ARRAY: {
  5887. break;
  5888. }
  5889. default: {
  5890. Variant::CallError err;
  5891. Variant temp = Variant::construct(base_type.builtin_type, nullptr, 0, err);
  5892. bool valid = false;
  5893. Variant res = temp.get(cn->value, &valid);
  5894. if (valid) {
  5895. node_type = _type_from_variant(res);
  5896. node_type.is_constant = false;
  5897. } else if (check_types) {
  5898. _set_error("Can't get index \"" + String(cn->value) + "\" on base \"" +
  5899. base_type.to_string() + "\".",
  5900. op->line);
  5901. return DataType();
  5902. }
  5903. } break;
  5904. }
  5905. } else {
  5906. _mark_line_as_unsafe(op->line);
  5907. }
  5908. } else if (!for_completion && (index_type.kind != DataType::BUILTIN || index_type.builtin_type != Variant::STRING)) {
  5909. _set_error("Only strings can be used as an index in the base type \"" + base_type.to_string() + "\".", op->line);
  5910. return DataType();
  5911. }
  5912. }
  5913. if (check_types && !node_type.has_type && base_type.kind == DataType::BUILTIN) {
  5914. // Can infer indexing type for some variant types
  5915. DataType result;
  5916. result.has_type = true;
  5917. result.kind = DataType::BUILTIN;
  5918. switch (base_type.builtin_type) {
  5919. // Can't index at all
  5920. case Variant::NIL:
  5921. case Variant::BOOL:
  5922. case Variant::INT:
  5923. case Variant::REAL:
  5924. case Variant::NODE_PATH:
  5925. case Variant::_RID: {
  5926. _set_error("Can't index on a value of type \"" + base_type.to_string() + "\".", op->line);
  5927. return DataType();
  5928. } break;
  5929. // Return int
  5930. case Variant::POOL_BYTE_ARRAY:
  5931. case Variant::POOL_INT_ARRAY: {
  5932. result.builtin_type = Variant::INT;
  5933. } break;
  5934. // Return real
  5935. case Variant::POOL_REAL_ARRAY:
  5936. case Variant::VECTOR2:
  5937. case Variant::VECTOR3:
  5938. case Variant::QUAT: {
  5939. result.builtin_type = Variant::REAL;
  5940. } break;
  5941. // Return color
  5942. case Variant::POOL_COLOR_ARRAY: {
  5943. result.builtin_type = Variant::COLOR;
  5944. } break;
  5945. // Return string
  5946. case Variant::POOL_STRING_ARRAY:
  5947. case Variant::STRING: {
  5948. result.builtin_type = Variant::STRING;
  5949. } break;
  5950. // Return Vector2
  5951. case Variant::POOL_VECTOR2_ARRAY:
  5952. case Variant::TRANSFORM2D:
  5953. case Variant::RECT2: {
  5954. result.builtin_type = Variant::VECTOR2;
  5955. } break;
  5956. // Return Vector3
  5957. case Variant::POOL_VECTOR3_ARRAY:
  5958. case Variant::AABB:
  5959. case Variant::BASIS: {
  5960. result.builtin_type = Variant::VECTOR3;
  5961. } break;
  5962. // Depends on the index
  5963. case Variant::TRANSFORM:
  5964. case Variant::PLANE:
  5965. case Variant::COLOR:
  5966. default: {
  5967. result.has_type = false;
  5968. } break;
  5969. }
  5970. node_type = result;
  5971. }
  5972. } break;
  5973. default: {
  5974. _set_error("Parser bug: unhandled operation.", op->line);
  5975. ERR_FAIL_V(DataType());
  5976. }
  5977. }
  5978. } break;
  5979. default: {
  5980. }
  5981. }
  5982. node_type = _resolve_type(node_type, p_node->line);
  5983. p_node->set_datatype(node_type);
  5984. return node_type;
  5985. }
  5986. 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 {
  5987. r_static = false;
  5988. r_default_arg_count = 0;
  5989. DataType original_type = p_base_type;
  5990. ClassNode *base = nullptr;
  5991. FunctionNode *callee = nullptr;
  5992. if (p_base_type.kind == DataType::CLASS) {
  5993. base = p_base_type.class_type;
  5994. }
  5995. // Look up the current file (parse tree)
  5996. while (!callee && base) {
  5997. for (int i = 0; i < base->static_functions.size(); i++) {
  5998. FunctionNode *func = base->static_functions[i];
  5999. if (p_function == func->name) {
  6000. r_static = true;
  6001. callee = func;
  6002. break;
  6003. }
  6004. }
  6005. if (!callee && !p_base_type.is_meta_type) {
  6006. for (int i = 0; i < base->functions.size(); i++) {
  6007. FunctionNode *func = base->functions[i];
  6008. if (p_function == func->name) {
  6009. callee = func;
  6010. break;
  6011. }
  6012. }
  6013. }
  6014. p_base_type = base->base_type;
  6015. if (p_base_type.kind == DataType::CLASS) {
  6016. base = p_base_type.class_type;
  6017. } else {
  6018. break;
  6019. }
  6020. }
  6021. if (callee) {
  6022. r_return_type = callee->get_datatype();
  6023. for (int i = 0; i < callee->argument_types.size(); i++) {
  6024. r_arg_types.push_back(callee->argument_types[i]);
  6025. }
  6026. r_default_arg_count = callee->default_values.size();
  6027. return true;
  6028. }
  6029. // Nothing in current file, check parent script
  6030. Ref<GDScript> base_gdscript;
  6031. Ref<Script> base_script;
  6032. StringName native;
  6033. if (p_base_type.kind == DataType::GDSCRIPT) {
  6034. base_gdscript = p_base_type.script_type;
  6035. if (base_gdscript.is_null() || !base_gdscript->is_valid()) {
  6036. // GDScript wasn't properly compíled, don't bother trying
  6037. return false;
  6038. }
  6039. } else if (p_base_type.kind == DataType::SCRIPT) {
  6040. base_script = p_base_type.script_type;
  6041. } else if (p_base_type.kind == DataType::NATIVE) {
  6042. native = p_base_type.native_type;
  6043. }
  6044. while (base_gdscript.is_valid()) {
  6045. native = base_gdscript->get_instance_base_type();
  6046. Map<StringName, GDScriptFunction *> funcs = base_gdscript->get_member_functions();
  6047. if (funcs.has(p_function)) {
  6048. GDScriptFunction *f = funcs[p_function];
  6049. r_static = f->is_static();
  6050. r_default_arg_count = f->get_default_argument_count();
  6051. r_return_type = _type_from_gdtype(f->get_return_type());
  6052. for (int i = 0; i < f->get_argument_count(); i++) {
  6053. r_arg_types.push_back(_type_from_gdtype(f->get_argument_type(i)));
  6054. }
  6055. return true;
  6056. }
  6057. base_gdscript = base_gdscript->get_base_script();
  6058. }
  6059. while (base_script.is_valid()) {
  6060. native = base_script->get_instance_base_type();
  6061. MethodInfo mi = base_script->get_method_info(p_function);
  6062. if (!(mi == MethodInfo())) {
  6063. r_return_type = _type_from_property(mi.return_val, false);
  6064. r_default_arg_count = mi.default_arguments.size();
  6065. for (List<PropertyInfo>::Element *E = mi.arguments.front(); E; E = E->next()) {
  6066. r_arg_types.push_back(_type_from_property(E->get()));
  6067. }
  6068. return true;
  6069. }
  6070. base_script = base_script->get_base_script();
  6071. }
  6072. if (native == StringName()) {
  6073. // Empty native class, might happen in some Script implementations
  6074. // Just ignore it
  6075. return false;
  6076. }
  6077. // Only native remains
  6078. if (!ClassDB::class_exists(native)) {
  6079. native = "_" + native.operator String();
  6080. }
  6081. if (!ClassDB::class_exists(native)) {
  6082. if (!check_types) {
  6083. return false;
  6084. }
  6085. ERR_FAIL_V_MSG(false, "Parser bug: Class '" + String(native) + "' not found.");
  6086. }
  6087. MethodBind *method = ClassDB::get_method(native, p_function);
  6088. if (!method) {
  6089. // Try virtual methods
  6090. List<MethodInfo> virtuals;
  6091. ClassDB::get_virtual_methods(native, &virtuals);
  6092. for (const List<MethodInfo>::Element *E = virtuals.front(); E; E = E->next()) {
  6093. const MethodInfo &mi = E->get();
  6094. if (mi.name == p_function) {
  6095. r_default_arg_count = mi.default_arguments.size();
  6096. for (const List<PropertyInfo>::Element *pi = mi.arguments.front(); pi; pi = pi->next()) {
  6097. r_arg_types.push_back(_type_from_property(pi->get()));
  6098. }
  6099. r_return_type = _type_from_property(mi.return_val, false);
  6100. r_vararg = mi.flags & METHOD_FLAG_VARARG;
  6101. return true;
  6102. }
  6103. }
  6104. // If the base is a script, it might be trying to access members of the Script class itself
  6105. if (original_type.is_meta_type && !(p_function == "new") && (original_type.kind == DataType::SCRIPT || original_type.kind == DataType::GDSCRIPT)) {
  6106. method = ClassDB::get_method(original_type.script_type->get_class_name(), p_function);
  6107. if (method) {
  6108. r_static = true;
  6109. } else {
  6110. // Try virtual methods of the script type
  6111. virtuals.clear();
  6112. ClassDB::get_virtual_methods(original_type.script_type->get_class_name(), &virtuals);
  6113. for (const List<MethodInfo>::Element *E = virtuals.front(); E; E = E->next()) {
  6114. const MethodInfo &mi = E->get();
  6115. if (mi.name == p_function) {
  6116. r_default_arg_count = mi.default_arguments.size();
  6117. for (const List<PropertyInfo>::Element *pi = mi.arguments.front(); pi; pi = pi->next()) {
  6118. r_arg_types.push_back(_type_from_property(pi->get()));
  6119. }
  6120. r_return_type = _type_from_property(mi.return_val, false);
  6121. r_static = true;
  6122. r_vararg = mi.flags & METHOD_FLAG_VARARG;
  6123. return true;
  6124. }
  6125. }
  6126. return false;
  6127. }
  6128. } else {
  6129. return false;
  6130. }
  6131. }
  6132. r_default_arg_count = method->get_default_argument_count();
  6133. if (method->get_name() == "get_script") {
  6134. r_return_type = DataType(); // Variant for now and let runtime decide.
  6135. } else {
  6136. r_return_type = _type_from_property(method->get_return_info(), false);
  6137. }
  6138. r_vararg = method->is_vararg();
  6139. for (int i = 0; i < method->get_argument_count(); i++) {
  6140. r_arg_types.push_back(_type_from_property(method->get_argument_info(i)));
  6141. }
  6142. return true;
  6143. }
  6144. GDScriptParser::DataType GDScriptParser::_reduce_function_call_type(const OperatorNode *p_call) {
  6145. if (p_call->arguments.size() < 1) {
  6146. _set_error("Parser bug: function call without enough arguments.", p_call->line);
  6147. ERR_FAIL_V(DataType());
  6148. }
  6149. DataType return_type;
  6150. List<DataType> arg_types;
  6151. int default_args_count = 0;
  6152. String callee_name;
  6153. bool is_vararg = false;
  6154. #ifdef DEBUG_ENABLED
  6155. int arg_count = p_call->arguments.size();
  6156. #endif
  6157. switch (p_call->arguments[0]->type) {
  6158. case GDScriptParser::Node::TYPE_TYPE: {
  6159. // Built-in constructor, special case
  6160. TypeNode *tn = static_cast<TypeNode *>(p_call->arguments[0]);
  6161. Vector<DataType> par_types;
  6162. par_types.resize(p_call->arguments.size() - 1);
  6163. for (int i = 1; i < p_call->arguments.size(); i++) {
  6164. par_types.write[i - 1] = _reduce_node_type(p_call->arguments[i]);
  6165. }
  6166. if (error_set) {
  6167. return DataType();
  6168. }
  6169. // Special case: check copy constructor. Those are defined implicitly in Variant.
  6170. if (par_types.size() == 1) {
  6171. if (!par_types[0].has_type || (par_types[0].kind == DataType::BUILTIN && par_types[0].builtin_type == tn->vtype)) {
  6172. DataType result;
  6173. result.has_type = true;
  6174. result.kind = DataType::BUILTIN;
  6175. result.builtin_type = tn->vtype;
  6176. return result;
  6177. }
  6178. }
  6179. bool match = false;
  6180. List<MethodInfo> constructors;
  6181. Variant::get_constructor_list(tn->vtype, &constructors);
  6182. PropertyInfo return_type2;
  6183. for (List<MethodInfo>::Element *E = constructors.front(); E; E = E->next()) {
  6184. MethodInfo &mi = E->get();
  6185. if (p_call->arguments.size() - 1 < mi.arguments.size() - mi.default_arguments.size()) {
  6186. continue;
  6187. }
  6188. if (p_call->arguments.size() - 1 > mi.arguments.size()) {
  6189. continue;
  6190. }
  6191. bool types_match = true;
  6192. for (int i = 0; i < par_types.size(); i++) {
  6193. DataType arg_type;
  6194. if (mi.arguments[i].type != Variant::NIL) {
  6195. arg_type.has_type = true;
  6196. arg_type.kind = mi.arguments[i].type == Variant::OBJECT ? DataType::NATIVE : DataType::BUILTIN;
  6197. arg_type.builtin_type = mi.arguments[i].type;
  6198. arg_type.native_type = mi.arguments[i].class_name;
  6199. }
  6200. if (!_is_type_compatible(arg_type, par_types[i], true)) {
  6201. types_match = false;
  6202. break;
  6203. } else {
  6204. #ifdef DEBUG_ENABLED
  6205. 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) {
  6206. _add_warning(GDScriptWarning::NARROWING_CONVERSION, p_call->line, Variant::get_type_name(tn->vtype));
  6207. }
  6208. if (par_types[i].may_yield && p_call->arguments[i + 1]->type == Node::TYPE_OPERATOR) {
  6209. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, p_call->line, _find_function_name(static_cast<OperatorNode *>(p_call->arguments[i + 1])));
  6210. }
  6211. #endif // DEBUG_ENABLED
  6212. }
  6213. }
  6214. if (types_match) {
  6215. match = true;
  6216. return_type2 = mi.return_val;
  6217. break;
  6218. }
  6219. }
  6220. if (match) {
  6221. return _type_from_property(return_type2, false);
  6222. } else if (check_types) {
  6223. String err = "No constructor of '";
  6224. err += Variant::get_type_name(tn->vtype);
  6225. err += "' matches the signature '";
  6226. err += Variant::get_type_name(tn->vtype) + "(";
  6227. for (int i = 0; i < par_types.size(); i++) {
  6228. if (i > 0) {
  6229. err += ", ";
  6230. }
  6231. err += par_types[i].to_string();
  6232. }
  6233. err += ")'.";
  6234. _set_error(err, p_call->line, p_call->column);
  6235. return DataType();
  6236. }
  6237. return DataType();
  6238. } break;
  6239. case GDScriptParser::Node::TYPE_BUILT_IN_FUNCTION: {
  6240. BuiltInFunctionNode *func = static_cast<BuiltInFunctionNode *>(p_call->arguments[0]);
  6241. MethodInfo mi = GDScriptFunctions::get_info(func->function);
  6242. return_type = _type_from_property(mi.return_val, false);
  6243. // Check all arguments beforehand to solve warnings
  6244. for (int i = 1; i < p_call->arguments.size(); i++) {
  6245. _reduce_node_type(p_call->arguments[i]);
  6246. }
  6247. // Check arguments
  6248. is_vararg = mi.flags & METHOD_FLAG_VARARG;
  6249. default_args_count = mi.default_arguments.size();
  6250. callee_name = mi.name;
  6251. #ifdef DEBUG_ENABLED
  6252. arg_count -= 1;
  6253. #endif
  6254. // Check each argument type
  6255. for (List<PropertyInfo>::Element *E = mi.arguments.front(); E; E = E->next()) {
  6256. arg_types.push_back(_type_from_property(E->get()));
  6257. }
  6258. } break;
  6259. default: {
  6260. if (p_call->op == OperatorNode::OP_CALL && p_call->arguments.size() < 2) {
  6261. _set_error("Parser bug: self method call without enough arguments.", p_call->line);
  6262. ERR_FAIL_V(DataType());
  6263. }
  6264. int arg_id = p_call->op == OperatorNode::OP_CALL ? 1 : 0;
  6265. if (p_call->arguments[arg_id]->type != Node::TYPE_IDENTIFIER) {
  6266. _set_error("Parser bug: invalid function call argument.", p_call->line);
  6267. ERR_FAIL_V(DataType());
  6268. }
  6269. // Check all arguments beforehand to solve warnings
  6270. for (int i = arg_id + 1; i < p_call->arguments.size(); i++) {
  6271. _reduce_node_type(p_call->arguments[i]);
  6272. }
  6273. IdentifierNode *func_id = static_cast<IdentifierNode *>(p_call->arguments[arg_id]);
  6274. callee_name = func_id->name;
  6275. #ifdef DEBUG_ENABLED
  6276. arg_count -= 1 + arg_id;
  6277. #endif
  6278. DataType base_type;
  6279. if (p_call->op == OperatorNode::OP_PARENT_CALL) {
  6280. base_type = current_class->base_type;
  6281. } else {
  6282. base_type = _reduce_node_type(p_call->arguments[0]);
  6283. }
  6284. if (!base_type.has_type || (base_type.kind == DataType::BUILTIN && base_type.builtin_type == Variant::NIL)) {
  6285. _mark_line_as_unsafe(p_call->line);
  6286. return DataType();
  6287. }
  6288. if (base_type.kind == DataType::BUILTIN) {
  6289. Variant::CallError err;
  6290. Variant tmp = Variant::construct(base_type.builtin_type, nullptr, 0, err);
  6291. if (check_types) {
  6292. if (!tmp.has_method(callee_name)) {
  6293. _set_error("The method \"" + callee_name + "\" isn't declared on base \"" + base_type.to_string() + "\".", p_call->line);
  6294. return DataType();
  6295. }
  6296. default_args_count = Variant::get_method_default_arguments(base_type.builtin_type, callee_name).size();
  6297. const Vector<Variant::Type> &var_arg_types = Variant::get_method_argument_types(base_type.builtin_type, callee_name);
  6298. for (int i = 0; i < var_arg_types.size(); i++) {
  6299. DataType argtype;
  6300. if (var_arg_types[i] != Variant::NIL) {
  6301. argtype.has_type = true;
  6302. argtype.kind = DataType::BUILTIN;
  6303. argtype.builtin_type = var_arg_types[i];
  6304. }
  6305. arg_types.push_back(argtype);
  6306. }
  6307. }
  6308. bool rets = false;
  6309. return_type.has_type = true;
  6310. return_type.kind = DataType::BUILTIN;
  6311. return_type.builtin_type = Variant::get_method_return_type(base_type.builtin_type, callee_name, &rets);
  6312. // If the method returns, but it might return any type, (Variant::NIL), pretend we don't know the type.
  6313. // At least make sure we know that it returns
  6314. if (rets && return_type.builtin_type == Variant::NIL) {
  6315. return_type.has_type = false;
  6316. }
  6317. break;
  6318. }
  6319. DataType original_type = base_type;
  6320. bool is_initializer = callee_name == "new";
  6321. bool is_get_script = p_call->arguments[0]->type == Node::TYPE_SELF && callee_name == "get_script";
  6322. bool is_static = false;
  6323. bool valid = false;
  6324. if (is_initializer && original_type.is_meta_type) {
  6325. // Try to check it as initializer
  6326. base_type = original_type;
  6327. callee_name = "_init";
  6328. base_type.is_meta_type = false;
  6329. valid = _get_function_signature(base_type, callee_name, return_type, arg_types,
  6330. default_args_count, is_static, is_vararg);
  6331. return_type = original_type;
  6332. return_type.is_meta_type = false;
  6333. valid = true; // There's always an initializer, we can assume this is true
  6334. }
  6335. if (is_get_script) {
  6336. // get_script() can be considered a meta-type.
  6337. return_type.kind = DataType::CLASS;
  6338. return_type.class_type = static_cast<ClassNode *>(head);
  6339. return_type.is_meta_type = true;
  6340. valid = true;
  6341. }
  6342. if (!valid) {
  6343. base_type = original_type;
  6344. return_type = DataType();
  6345. valid = _get_function_signature(base_type, callee_name, return_type, arg_types,
  6346. default_args_count, is_static, is_vararg);
  6347. }
  6348. if (!valid) {
  6349. #ifdef DEBUG_ENABLED
  6350. if (p_call->arguments[0]->type == Node::TYPE_SELF) {
  6351. _set_error("The method \"" + callee_name + "\" isn't declared in the current class.", p_call->line);
  6352. return DataType();
  6353. }
  6354. DataType tmp_type;
  6355. valid = _get_member_type(original_type, func_id->name, tmp_type);
  6356. if (valid) {
  6357. if (tmp_type.is_constant) {
  6358. _add_warning(GDScriptWarning::CONSTANT_USED_AS_FUNCTION, p_call->line, callee_name, original_type.to_string());
  6359. } else {
  6360. _add_warning(GDScriptWarning::PROPERTY_USED_AS_FUNCTION, p_call->line, callee_name, original_type.to_string());
  6361. }
  6362. }
  6363. _add_warning(GDScriptWarning::UNSAFE_METHOD_ACCESS, p_call->line, callee_name, original_type.to_string());
  6364. _mark_line_as_unsafe(p_call->line);
  6365. #endif // DEBUG_ENABLED
  6366. return DataType();
  6367. }
  6368. #ifdef DEBUG_ENABLED
  6369. if (current_function && !for_completion && !is_static && p_call->arguments[0]->type == Node::TYPE_SELF && current_function->_static) {
  6370. _set_error("Can't call non-static function from a static function.", p_call->line);
  6371. return DataType();
  6372. }
  6373. if (check_types && !is_static && !is_initializer && base_type.is_meta_type) {
  6374. _set_error("Non-static function \"" + String(callee_name) + "\" can only be called from an instance.", p_call->line);
  6375. return DataType();
  6376. }
  6377. // Check signal emission for warnings
  6378. 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) {
  6379. ConstantNode *sig = static_cast<ConstantNode *>(p_call->arguments[2]);
  6380. String emitted = sig->value.get_type() == Variant::STRING ? sig->value.operator String() : "";
  6381. for (int i = 0; i < current_class->_signals.size(); i++) {
  6382. if (current_class->_signals[i].name == emitted) {
  6383. current_class->_signals.write[i].emissions += 1;
  6384. break;
  6385. }
  6386. }
  6387. }
  6388. #endif // DEBUG_ENABLED
  6389. } break;
  6390. }
  6391. #ifdef DEBUG_ENABLED
  6392. if (!check_types) {
  6393. return return_type;
  6394. }
  6395. if (arg_count < arg_types.size() - default_args_count) {
  6396. _set_error("Too few arguments for \"" + callee_name + "()\" call. Expected at least " + itos(arg_types.size() - default_args_count) + ".", p_call->line);
  6397. return return_type;
  6398. }
  6399. if (!is_vararg && arg_count > arg_types.size()) {
  6400. _set_error("Too many arguments for \"" + callee_name + "()\" call. Expected at most " + itos(arg_types.size()) + ".", p_call->line);
  6401. return return_type;
  6402. }
  6403. int arg_diff = p_call->arguments.size() - arg_count;
  6404. for (int i = arg_diff; i < p_call->arguments.size(); i++) {
  6405. DataType par_type = _reduce_node_type(p_call->arguments[i]);
  6406. if ((i - arg_diff) >= arg_types.size()) {
  6407. continue;
  6408. }
  6409. DataType arg_type = arg_types[i - arg_diff];
  6410. if (!par_type.has_type) {
  6411. _mark_line_as_unsafe(p_call->line);
  6412. if (par_type.may_yield && p_call->arguments[i]->type == Node::TYPE_OPERATOR) {
  6413. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, p_call->line, _find_function_name(static_cast<OperatorNode *>(p_call->arguments[i])));
  6414. }
  6415. } else if (!_is_type_compatible(arg_types[i - arg_diff], par_type, true)) {
  6416. // Supertypes are acceptable for dynamic compliance
  6417. if (!_is_type_compatible(par_type, arg_types[i - arg_diff])) {
  6418. _set_error("At \"" + callee_name + "()\" call, argument " + itos(i - arg_diff + 1) + ". The passed argument's type (" +
  6419. par_type.to_string() + ") doesn't match the function's expected argument type (" +
  6420. arg_types[i - arg_diff].to_string() + ").",
  6421. p_call->line);
  6422. return DataType();
  6423. } else {
  6424. _mark_line_as_unsafe(p_call->line);
  6425. }
  6426. } else {
  6427. if (arg_type.kind == DataType::BUILTIN && arg_type.builtin_type == Variant::INT && par_type.kind == DataType::BUILTIN && par_type.builtin_type == Variant::REAL) {
  6428. _add_warning(GDScriptWarning::NARROWING_CONVERSION, p_call->line, callee_name);
  6429. }
  6430. }
  6431. }
  6432. #endif // DEBUG_ENABLED
  6433. return return_type;
  6434. }
  6435. bool GDScriptParser::_get_member_type(const DataType &p_base_type, const StringName &p_member, DataType &r_member_type, bool *r_is_const) const {
  6436. DataType base_type = p_base_type;
  6437. // Check classes in current file
  6438. ClassNode *base = nullptr;
  6439. if (base_type.kind == DataType::CLASS) {
  6440. base = base_type.class_type;
  6441. }
  6442. while (base) {
  6443. if (base->constant_expressions.has(p_member)) {
  6444. if (r_is_const) {
  6445. *r_is_const = true;
  6446. }
  6447. r_member_type = base->constant_expressions[p_member].expression->get_datatype();
  6448. return true;
  6449. }
  6450. if (!base_type.is_meta_type) {
  6451. for (int i = 0; i < base->variables.size(); i++) {
  6452. if (base->variables[i].identifier == p_member) {
  6453. r_member_type = base->variables[i].data_type;
  6454. base->variables.write[i].usages += 1;
  6455. return true;
  6456. }
  6457. }
  6458. } else {
  6459. for (int i = 0; i < base->subclasses.size(); i++) {
  6460. ClassNode *c = base->subclasses[i];
  6461. if (c->name == p_member) {
  6462. DataType class_type;
  6463. class_type.has_type = true;
  6464. class_type.is_constant = true;
  6465. class_type.is_meta_type = true;
  6466. class_type.kind = DataType::CLASS;
  6467. class_type.class_type = c;
  6468. r_member_type = class_type;
  6469. return true;
  6470. }
  6471. }
  6472. }
  6473. base_type = base->base_type;
  6474. if (base_type.kind == DataType::CLASS) {
  6475. base = base_type.class_type;
  6476. } else {
  6477. break;
  6478. }
  6479. }
  6480. Ref<GDScript> gds;
  6481. if (base_type.kind == DataType::GDSCRIPT) {
  6482. gds = base_type.script_type;
  6483. if (gds.is_null() || !gds->is_valid()) {
  6484. // GDScript wasn't properly compíled, don't bother trying
  6485. return false;
  6486. }
  6487. }
  6488. Ref<Script> scr;
  6489. if (base_type.kind == DataType::SCRIPT) {
  6490. scr = base_type.script_type;
  6491. }
  6492. StringName native;
  6493. if (base_type.kind == DataType::NATIVE) {
  6494. native = base_type.native_type;
  6495. }
  6496. // Check GDScripts
  6497. while (gds.is_valid()) {
  6498. if (gds->get_constants().has(p_member)) {
  6499. Variant c = gds->get_constants()[p_member];
  6500. r_member_type = _type_from_variant(c);
  6501. return true;
  6502. }
  6503. if (!base_type.is_meta_type) {
  6504. if (gds->get_members().has(p_member)) {
  6505. r_member_type = _type_from_gdtype(gds->get_member_type(p_member));
  6506. return true;
  6507. }
  6508. }
  6509. native = gds->get_instance_base_type();
  6510. if (gds->get_base_script().is_valid()) {
  6511. gds = gds->get_base_script();
  6512. scr = gds->get_base_script();
  6513. bool is_meta = base_type.is_meta_type;
  6514. base_type = _type_from_variant(scr.operator Variant());
  6515. base_type.is_meta_type = is_meta;
  6516. } else {
  6517. break;
  6518. }
  6519. }
  6520. #define IS_USAGE_MEMBER(m_usage) (!(m_usage & (PROPERTY_USAGE_GROUP | PROPERTY_USAGE_CATEGORY)))
  6521. // Check other script types
  6522. while (scr.is_valid()) {
  6523. Map<StringName, Variant> constants;
  6524. scr->get_constants(&constants);
  6525. if (constants.has(p_member)) {
  6526. r_member_type = _type_from_variant(constants[p_member]);
  6527. return true;
  6528. }
  6529. List<PropertyInfo> properties;
  6530. scr->get_script_property_list(&properties);
  6531. for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
  6532. if (E->get().name == p_member && IS_USAGE_MEMBER(E->get().usage)) {
  6533. r_member_type = _type_from_property(E->get());
  6534. return true;
  6535. }
  6536. }
  6537. base_type = _type_from_variant(scr.operator Variant());
  6538. native = scr->get_instance_base_type();
  6539. scr = scr->get_base_script();
  6540. }
  6541. if (native == StringName()) {
  6542. // Empty native class, might happen in some Script implementations
  6543. // Just ignore it
  6544. return false;
  6545. }
  6546. // Check ClassDB
  6547. if (!ClassDB::class_exists(native)) {
  6548. native = "_" + native.operator String();
  6549. }
  6550. if (!ClassDB::class_exists(native)) {
  6551. if (!check_types) {
  6552. return false;
  6553. }
  6554. ERR_FAIL_V_MSG(false, "Parser bug: Class \"" + String(native) + "\" not found.");
  6555. }
  6556. bool valid = false;
  6557. ClassDB::get_integer_constant(native, p_member, &valid);
  6558. if (valid) {
  6559. DataType ct;
  6560. ct.has_type = true;
  6561. ct.is_constant = true;
  6562. ct.kind = DataType::BUILTIN;
  6563. ct.builtin_type = Variant::INT;
  6564. r_member_type = ct;
  6565. return true;
  6566. }
  6567. if (!base_type.is_meta_type) {
  6568. List<PropertyInfo> properties;
  6569. ClassDB::get_property_list(native, &properties);
  6570. for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
  6571. if (E->get().name == p_member && IS_USAGE_MEMBER(E->get().usage)) {
  6572. // Check if a getter exists
  6573. StringName getter_name = ClassDB::get_property_getter(native, p_member);
  6574. if (getter_name != StringName()) {
  6575. // Use the getter return type
  6576. MethodBind *getter_method = ClassDB::get_method(native, getter_name);
  6577. if (getter_method) {
  6578. r_member_type = _type_from_property(getter_method->get_return_info());
  6579. } else {
  6580. r_member_type = DataType();
  6581. }
  6582. } else {
  6583. r_member_type = _type_from_property(E->get());
  6584. }
  6585. return true;
  6586. }
  6587. }
  6588. }
  6589. // If the base is a script, it might be trying to access members of the Script class itself
  6590. if (p_base_type.is_meta_type && (p_base_type.kind == DataType::SCRIPT || p_base_type.kind == DataType::GDSCRIPT)) {
  6591. native = p_base_type.script_type->get_class_name();
  6592. ClassDB::get_integer_constant(native, p_member, &valid);
  6593. if (valid) {
  6594. DataType ct;
  6595. ct.has_type = true;
  6596. ct.is_constant = true;
  6597. ct.kind = DataType::BUILTIN;
  6598. ct.builtin_type = Variant::INT;
  6599. r_member_type = ct;
  6600. return true;
  6601. }
  6602. List<PropertyInfo> properties;
  6603. ClassDB::get_property_list(native, &properties);
  6604. for (List<PropertyInfo>::Element *E = properties.front(); E; E = E->next()) {
  6605. if (E->get().name == p_member && IS_USAGE_MEMBER(E->get().usage)) {
  6606. // Check if a getter exists
  6607. StringName getter_name = ClassDB::get_property_getter(native, p_member);
  6608. if (getter_name != StringName()) {
  6609. // Use the getter return type
  6610. MethodBind *getter_method = ClassDB::get_method(native, getter_name);
  6611. if (getter_method) {
  6612. r_member_type = _type_from_property(getter_method->get_return_info());
  6613. } else {
  6614. r_member_type = DataType();
  6615. }
  6616. } else {
  6617. r_member_type = _type_from_property(E->get());
  6618. }
  6619. return true;
  6620. }
  6621. }
  6622. }
  6623. #undef IS_USAGE_MEMBER
  6624. return false;
  6625. }
  6626. GDScriptParser::DataType GDScriptParser::_reduce_identifier_type(const DataType *p_base_type, const StringName &p_identifier, int p_line, bool p_is_indexing) {
  6627. if (p_base_type && !p_base_type->has_type) {
  6628. return DataType();
  6629. }
  6630. DataType base_type;
  6631. DataType member_type;
  6632. if (!p_base_type) {
  6633. base_type.has_type = true;
  6634. base_type.is_constant = true;
  6635. base_type.kind = DataType::CLASS;
  6636. base_type.class_type = current_class;
  6637. } else {
  6638. base_type = DataType(*p_base_type);
  6639. }
  6640. bool is_const = false;
  6641. if (_get_member_type(base_type, p_identifier, member_type, &is_const)) {
  6642. if (!p_base_type && current_function && current_function->_static && !is_const) {
  6643. _set_error("Can't access member variable (\"" + p_identifier.operator String() + "\") from a static function.", p_line);
  6644. return DataType();
  6645. }
  6646. return member_type;
  6647. }
  6648. if (p_is_indexing) {
  6649. // Don't look for globals since this is an indexed identifier
  6650. return DataType();
  6651. }
  6652. if (!p_base_type) {
  6653. // Possibly this is a global, check before failing
  6654. if (ClassDB::class_exists(p_identifier) || ClassDB::class_exists("_" + p_identifier.operator String())) {
  6655. DataType result;
  6656. result.has_type = true;
  6657. result.is_constant = true;
  6658. result.is_meta_type = true;
  6659. if (Engine::get_singleton()->has_singleton(p_identifier) || Engine::get_singleton()->has_singleton("_" + p_identifier.operator String())) {
  6660. result.is_meta_type = false;
  6661. }
  6662. result.kind = DataType::NATIVE;
  6663. result.native_type = p_identifier;
  6664. return result;
  6665. }
  6666. ClassNode *outer_class = current_class;
  6667. while (outer_class) {
  6668. if (outer_class->name == p_identifier) {
  6669. DataType result;
  6670. result.has_type = true;
  6671. result.is_constant = true;
  6672. result.is_meta_type = true;
  6673. result.kind = DataType::CLASS;
  6674. result.class_type = outer_class;
  6675. return result;
  6676. }
  6677. if (outer_class->constant_expressions.has(p_identifier)) {
  6678. return outer_class->constant_expressions[p_identifier].type;
  6679. }
  6680. for (int i = 0; i < outer_class->subclasses.size(); i++) {
  6681. if (outer_class->subclasses[i] == current_class) {
  6682. continue;
  6683. }
  6684. if (outer_class->subclasses[i]->name == p_identifier) {
  6685. DataType result;
  6686. result.has_type = true;
  6687. result.is_constant = true;
  6688. result.is_meta_type = true;
  6689. result.kind = DataType::CLASS;
  6690. result.class_type = outer_class->subclasses[i];
  6691. return result;
  6692. }
  6693. }
  6694. outer_class = outer_class->owner;
  6695. }
  6696. if (ScriptServer::is_global_class(p_identifier)) {
  6697. Ref<Script> scr = ResourceLoader::load(ScriptServer::get_global_class_path(p_identifier));
  6698. if (scr.is_valid()) {
  6699. DataType result;
  6700. result.has_type = true;
  6701. result.script_type = scr;
  6702. result.is_constant = true;
  6703. result.is_meta_type = true;
  6704. Ref<GDScript> gds = scr;
  6705. if (gds.is_valid()) {
  6706. if (!gds->is_valid()) {
  6707. _set_error("The class \"" + p_identifier + "\" couldn't be fully loaded (script error or cyclic dependency).");
  6708. return DataType();
  6709. }
  6710. result.kind = DataType::GDSCRIPT;
  6711. } else {
  6712. result.kind = DataType::SCRIPT;
  6713. }
  6714. return result;
  6715. }
  6716. _set_error("The class \"" + p_identifier + "\" was found in global scope, but its script couldn't be loaded.");
  6717. return DataType();
  6718. }
  6719. if (GDScriptLanguage::get_singleton()->get_global_map().has(p_identifier)) {
  6720. int idx = GDScriptLanguage::get_singleton()->get_global_map()[p_identifier];
  6721. Variant g = GDScriptLanguage::get_singleton()->get_global_array()[idx];
  6722. return _type_from_variant(g);
  6723. }
  6724. if (GDScriptLanguage::get_singleton()->get_named_globals_map().has(p_identifier)) {
  6725. Variant g = GDScriptLanguage::get_singleton()->get_named_globals_map()[p_identifier];
  6726. return _type_from_variant(g);
  6727. }
  6728. // Non-tool singletons aren't loaded, check project settings
  6729. List<PropertyInfo> props;
  6730. ProjectSettings::get_singleton()->get_property_list(&props);
  6731. for (List<PropertyInfo>::Element *E = props.front(); E; E = E->next()) {
  6732. String s = E->get().name;
  6733. if (!s.begins_with("autoload/")) {
  6734. continue;
  6735. }
  6736. String name = s.get_slice("/", 1);
  6737. if (name == p_identifier) {
  6738. String script = ProjectSettings::get_singleton()->get(s);
  6739. if (script.begins_with("*")) {
  6740. script = script.right(1);
  6741. }
  6742. if (!script.begins_with("res://")) {
  6743. script = "res://" + script;
  6744. }
  6745. Ref<Script> singleton = ResourceLoader::load(script);
  6746. if (singleton.is_valid()) {
  6747. DataType result;
  6748. result.has_type = true;
  6749. result.is_constant = true;
  6750. result.script_type = singleton;
  6751. Ref<GDScript> gds = singleton;
  6752. if (gds.is_valid()) {
  6753. if (!gds->is_valid()) {
  6754. _set_error("Couldn't fully load the singleton script \"" + p_identifier + "\" (possible cyclic reference or parse error).", p_line);
  6755. return DataType();
  6756. }
  6757. result.kind = DataType::GDSCRIPT;
  6758. } else {
  6759. result.kind = DataType::SCRIPT;
  6760. }
  6761. }
  6762. }
  6763. }
  6764. // This means looking in the current class, which type is always known
  6765. _set_error("The identifier \"" + p_identifier.operator String() + "\" isn't declared in the current scope.", p_line);
  6766. }
  6767. #ifdef DEBUG_ENABLED
  6768. {
  6769. DataType tmp_type;
  6770. List<DataType> arg_types;
  6771. int argcount;
  6772. bool _static;
  6773. bool vararg;
  6774. if (_get_function_signature(base_type, p_identifier, tmp_type, arg_types, argcount, _static, vararg)) {
  6775. _add_warning(GDScriptWarning::FUNCTION_USED_AS_PROPERTY, p_line, p_identifier.operator String(), base_type.to_string());
  6776. }
  6777. }
  6778. #endif // DEBUG_ENABLED
  6779. _mark_line_as_unsafe(p_line);
  6780. return DataType();
  6781. }
  6782. void GDScriptParser::_check_class_level_types(ClassNode *p_class) {
  6783. // Names of internal object properties that we check to avoid overriding them.
  6784. // "__meta__" could also be in here, but since it doesn't really affect object metadata,
  6785. // it is okay to override it on script.
  6786. StringName script_name = CoreStringNames::get_singleton()->_script;
  6787. _mark_line_as_safe(p_class->line);
  6788. // Constants
  6789. for (Map<StringName, ClassNode::Constant>::Element *E = p_class->constant_expressions.front(); E; E = E->next()) {
  6790. ClassNode::Constant &c = E->get();
  6791. _mark_line_as_safe(c.expression->line);
  6792. DataType cont = _resolve_type(c.type, c.expression->line);
  6793. DataType expr = _resolve_type(c.expression->get_datatype(), c.expression->line);
  6794. if (check_types && !_is_type_compatible(cont, expr)) {
  6795. _set_error("The constant value type (" + expr.to_string() + ") isn't compatible with declared type (" + cont.to_string() + ").",
  6796. c.expression->line);
  6797. return;
  6798. }
  6799. expr.is_constant = true;
  6800. c.type = expr;
  6801. c.expression->set_datatype(expr);
  6802. DataType tmp;
  6803. const StringName &constant_name = E->key();
  6804. if (constant_name == script_name || _get_member_type(p_class->base_type, constant_name, tmp)) {
  6805. _set_error("The member \"" + String(constant_name) + "\" already exists in a parent class.", c.expression->line);
  6806. return;
  6807. }
  6808. }
  6809. // Function declarations
  6810. for (int i = 0; i < p_class->static_functions.size(); i++) {
  6811. _check_function_types(p_class->static_functions[i]);
  6812. if (error_set) {
  6813. return;
  6814. }
  6815. }
  6816. for (int i = 0; i < p_class->functions.size(); i++) {
  6817. _check_function_types(p_class->functions[i]);
  6818. if (error_set) {
  6819. return;
  6820. }
  6821. }
  6822. // Class variables
  6823. for (int i = 0; i < p_class->variables.size(); i++) {
  6824. ClassNode::Member &v = p_class->variables.write[i];
  6825. DataType tmp;
  6826. if (v.identifier == script_name || _get_member_type(p_class->base_type, v.identifier, tmp)) {
  6827. _set_error("The member \"" + String(v.identifier) + "\" already exists in a parent class.", v.line);
  6828. return;
  6829. }
  6830. _mark_line_as_safe(v.line);
  6831. v.data_type = _resolve_type(v.data_type, v.line);
  6832. v.initial_assignment->arguments[0]->set_datatype(v.data_type);
  6833. if (v.expression) {
  6834. DataType expr_type = _reduce_node_type(v.expression);
  6835. if (check_types && !_is_type_compatible(v.data_type, expr_type)) {
  6836. // Try supertype test
  6837. if (_is_type_compatible(expr_type, v.data_type)) {
  6838. _mark_line_as_unsafe(v.line);
  6839. } else {
  6840. // Try with implicit conversion
  6841. if (v.data_type.kind != DataType::BUILTIN || !_is_type_compatible(v.data_type, expr_type, true)) {
  6842. _set_error("The assigned expression's type (" + expr_type.to_string() + ") doesn't match the variable's type (" +
  6843. v.data_type.to_string() + ").",
  6844. v.line);
  6845. return;
  6846. }
  6847. // Replace assignment with implicit conversion
  6848. BuiltInFunctionNode *convert = alloc_node<BuiltInFunctionNode>();
  6849. convert->line = v.line;
  6850. convert->function = GDScriptFunctions::TYPE_CONVERT;
  6851. ConstantNode *tgt_type = alloc_node<ConstantNode>();
  6852. tgt_type->line = v.line;
  6853. tgt_type->value = (int)v.data_type.builtin_type;
  6854. OperatorNode *convert_call = alloc_node<OperatorNode>();
  6855. convert_call->line = v.line;
  6856. convert_call->op = OperatorNode::OP_CALL;
  6857. convert_call->arguments.push_back(convert);
  6858. convert_call->arguments.push_back(v.expression);
  6859. convert_call->arguments.push_back(tgt_type);
  6860. v.expression = convert_call;
  6861. v.initial_assignment->arguments.write[1] = convert_call;
  6862. }
  6863. }
  6864. if (v.data_type.infer_type) {
  6865. if (!expr_type.has_type) {
  6866. _set_error("The assigned value doesn't have a set type; the variable type can't be inferred.", v.line);
  6867. return;
  6868. }
  6869. if (expr_type.kind == DataType::BUILTIN && expr_type.builtin_type == Variant::NIL) {
  6870. _set_error("The variable type cannot be inferred because its value is \"null\".", v.line);
  6871. return;
  6872. }
  6873. v.data_type = expr_type;
  6874. v.data_type.is_constant = false;
  6875. }
  6876. }
  6877. // Check export hint
  6878. if (v.data_type.has_type && v._export.type != Variant::NIL) {
  6879. DataType export_type = _type_from_property(v._export);
  6880. if (!_is_type_compatible(v.data_type, export_type, true)) {
  6881. _set_error("The export hint's type (" + export_type.to_string() + ") doesn't match the variable's type (" +
  6882. v.data_type.to_string() + ").",
  6883. v.line);
  6884. return;
  6885. }
  6886. }
  6887. // Setter and getter
  6888. if (v.setter == StringName() && v.getter == StringName()) {
  6889. continue;
  6890. }
  6891. bool found_getter = false;
  6892. bool found_setter = false;
  6893. for (int j = 0; j < p_class->functions.size(); j++) {
  6894. if (v.setter == p_class->functions[j]->name) {
  6895. found_setter = true;
  6896. FunctionNode *setter = p_class->functions[j];
  6897. if (setter->get_required_argument_count() != 1 &&
  6898. !(setter->get_required_argument_count() == 0 && setter->default_values.size() > 0)) {
  6899. _set_error("The setter function needs to receive exactly 1 argument. See \"" + setter->name +
  6900. "()\" definition at line " + itos(setter->line) + ".",
  6901. v.line);
  6902. return;
  6903. }
  6904. if (!_is_type_compatible(v.data_type, setter->argument_types[0])) {
  6905. _set_error("The setter argument's type (" + setter->argument_types[0].to_string() +
  6906. ") doesn't match the variable's type (" + v.data_type.to_string() + "). See \"" +
  6907. setter->name + "()\" definition at line " + itos(setter->line) + ".",
  6908. v.line);
  6909. return;
  6910. }
  6911. continue;
  6912. }
  6913. if (v.getter == p_class->functions[j]->name) {
  6914. found_getter = true;
  6915. FunctionNode *getter = p_class->functions[j];
  6916. if (getter->get_required_argument_count() != 0) {
  6917. _set_error("The getter function can't receive arguments. See \"" + getter->name +
  6918. "()\" definition at line " + itos(getter->line) + ".",
  6919. v.line);
  6920. return;
  6921. }
  6922. if (!_is_type_compatible(v.data_type, getter->get_datatype())) {
  6923. _set_error("The getter return type (" + getter->get_datatype().to_string() +
  6924. ") doesn't match the variable's type (" + v.data_type.to_string() +
  6925. "). See \"" + getter->name + "()\" definition at line " + itos(getter->line) + ".",
  6926. v.line);
  6927. return;
  6928. }
  6929. }
  6930. if (found_getter && found_setter) {
  6931. break;
  6932. }
  6933. }
  6934. if ((found_getter || v.getter == StringName()) && (found_setter || v.setter == StringName())) {
  6935. continue;
  6936. }
  6937. // Check for static functions
  6938. for (int j = 0; j < p_class->static_functions.size(); j++) {
  6939. if (v.setter == p_class->static_functions[j]->name) {
  6940. FunctionNode *setter = p_class->static_functions[j];
  6941. _set_error("The setter can't be a static function. See \"" + setter->name + "()\" definition at line " + itos(setter->line) + ".", v.line);
  6942. return;
  6943. }
  6944. if (v.getter == p_class->static_functions[j]->name) {
  6945. FunctionNode *getter = p_class->static_functions[j];
  6946. _set_error("The getter can't be a static function. See \"" + getter->name + "()\" definition at line " + itos(getter->line) + ".", v.line);
  6947. return;
  6948. }
  6949. }
  6950. if (!found_setter && v.setter != StringName()) {
  6951. _set_error("The setter function isn't defined.", v.line);
  6952. return;
  6953. }
  6954. if (!found_getter && v.getter != StringName()) {
  6955. _set_error("The getter function isn't defined.", v.line);
  6956. return;
  6957. }
  6958. }
  6959. // Signals
  6960. DataType base = p_class->base_type;
  6961. while (base.kind == DataType::CLASS) {
  6962. ClassNode *base_class = base.class_type;
  6963. for (int i = 0; i < p_class->_signals.size(); i++) {
  6964. for (int j = 0; j < base_class->_signals.size(); j++) {
  6965. if (p_class->_signals[i].name == base_class->_signals[j].name) {
  6966. _set_error("The signal \"" + p_class->_signals[i].name + "\" already exists in a parent class.", p_class->_signals[i].line);
  6967. return;
  6968. }
  6969. }
  6970. }
  6971. base = base_class->base_type;
  6972. }
  6973. StringName native;
  6974. if (base.kind == DataType::GDSCRIPT || base.kind == DataType::SCRIPT) {
  6975. Ref<Script> scr = base.script_type;
  6976. if (scr.is_valid() && scr->is_valid()) {
  6977. native = scr->get_instance_base_type();
  6978. for (int i = 0; i < p_class->_signals.size(); i++) {
  6979. if (scr->has_script_signal(p_class->_signals[i].name)) {
  6980. _set_error("The signal \"" + p_class->_signals[i].name + "\" already exists in a parent class.", p_class->_signals[i].line);
  6981. return;
  6982. }
  6983. }
  6984. }
  6985. } else if (base.kind == DataType::NATIVE) {
  6986. native = base.native_type;
  6987. }
  6988. if (native != StringName()) {
  6989. for (int i = 0; i < p_class->_signals.size(); i++) {
  6990. if (ClassDB::has_signal(native, p_class->_signals[i].name)) {
  6991. _set_error("The signal \"" + p_class->_signals[i].name + "\" already exists in a parent class.", p_class->_signals[i].line);
  6992. return;
  6993. }
  6994. }
  6995. }
  6996. // Inner classes
  6997. for (int i = 0; i < p_class->subclasses.size(); i++) {
  6998. current_class = p_class->subclasses[i];
  6999. _check_class_level_types(current_class);
  7000. if (error_set) {
  7001. return;
  7002. }
  7003. current_class = p_class;
  7004. }
  7005. }
  7006. void GDScriptParser::_check_function_types(FunctionNode *p_function) {
  7007. p_function->return_type = _resolve_type(p_function->return_type, p_function->line);
  7008. // Arguments
  7009. int defaults_ofs = p_function->arguments.size() - p_function->default_values.size();
  7010. for (int i = 0; i < p_function->arguments.size(); i++) {
  7011. if (i < defaults_ofs) {
  7012. p_function->argument_types.write[i] = _resolve_type(p_function->argument_types[i], p_function->line);
  7013. } else {
  7014. if (p_function->default_values[i - defaults_ofs]->type != Node::TYPE_OPERATOR) {
  7015. _set_error("Parser bug: invalid argument default value.", p_function->line, p_function->column);
  7016. return;
  7017. }
  7018. OperatorNode *op = static_cast<OperatorNode *>(p_function->default_values[i - defaults_ofs]);
  7019. if (op->op != OperatorNode::OP_ASSIGN || op->arguments.size() != 2) {
  7020. _set_error("Parser bug: invalid argument default value operation.", p_function->line);
  7021. return;
  7022. }
  7023. DataType def_type = _reduce_node_type(op->arguments[1]);
  7024. if (p_function->argument_types[i].infer_type) {
  7025. def_type.is_constant = false;
  7026. p_function->argument_types.write[i] = def_type;
  7027. } else {
  7028. p_function->argument_types.write[i] = _resolve_type(p_function->argument_types[i], p_function->line);
  7029. if (!_is_type_compatible(p_function->argument_types[i], def_type, true)) {
  7030. String arg_name = p_function->arguments[i];
  7031. _set_error("Value type (" + def_type.to_string() + ") doesn't match the type of argument '" +
  7032. arg_name + "' (" + p_function->argument_types[i].to_string() + ").",
  7033. p_function->line);
  7034. }
  7035. }
  7036. }
  7037. #ifdef DEBUG_ENABLED
  7038. if (p_function->arguments_usage[i] == 0 && !p_function->arguments[i].operator String().begins_with("_")) {
  7039. _add_warning(GDScriptWarning::UNUSED_ARGUMENT, p_function->line, p_function->name, p_function->arguments[i].operator String());
  7040. }
  7041. for (int j = 0; j < current_class->variables.size(); j++) {
  7042. if (current_class->variables[j].identifier == p_function->arguments[i]) {
  7043. _add_warning(GDScriptWarning::SHADOWED_VARIABLE, p_function->line, p_function->arguments[i], itos(current_class->variables[j].line));
  7044. }
  7045. }
  7046. #endif // DEBUG_ENABLED
  7047. }
  7048. if (!(p_function->name == "_init")) {
  7049. // Signature for the initializer may vary
  7050. #ifdef DEBUG_ENABLED
  7051. DataType return_type;
  7052. List<DataType> arg_types;
  7053. int default_arg_count = 0;
  7054. bool _static = false;
  7055. bool vararg = false;
  7056. DataType base_type = current_class->base_type;
  7057. if (_get_function_signature(base_type, p_function->name, return_type, arg_types, default_arg_count, _static, vararg)) {
  7058. bool valid = _static == p_function->_static;
  7059. valid = valid && return_type == p_function->return_type;
  7060. int argsize_diff = p_function->arguments.size() - arg_types.size();
  7061. valid = valid && argsize_diff >= 0;
  7062. valid = valid && p_function->default_values.size() >= default_arg_count + argsize_diff;
  7063. int i = 0;
  7064. for (List<DataType>::Element *E = arg_types.front(); valid && E; E = E->next()) {
  7065. valid = valid && E->get() == p_function->argument_types[i++];
  7066. }
  7067. if (!valid) {
  7068. String parent_signature = return_type.has_type ? return_type.to_string() : "Variant";
  7069. if (parent_signature == "null") {
  7070. parent_signature = "void";
  7071. }
  7072. parent_signature += " " + p_function->name + "(";
  7073. if (arg_types.size()) {
  7074. int j = 0;
  7075. for (List<DataType>::Element *E = arg_types.front(); E; E = E->next()) {
  7076. if (E != arg_types.front()) {
  7077. parent_signature += ", ";
  7078. }
  7079. String arg = E->get().to_string();
  7080. if (arg == "null" || arg == "var") {
  7081. arg = "Variant";
  7082. }
  7083. parent_signature += arg;
  7084. if (j == arg_types.size() - default_arg_count) {
  7085. parent_signature += "=default";
  7086. }
  7087. j++;
  7088. }
  7089. }
  7090. parent_signature += ")";
  7091. _set_error("The function signature doesn't match the parent. Parent signature is: \"" + parent_signature + "\".", p_function->line);
  7092. return;
  7093. }
  7094. }
  7095. #endif // DEBUG_ENABLED
  7096. } else {
  7097. if (p_function->return_type.has_type && (p_function->return_type.kind != DataType::BUILTIN || p_function->return_type.builtin_type != Variant::NIL)) {
  7098. _set_error("The constructor can't return a value.", p_function->line);
  7099. return;
  7100. }
  7101. }
  7102. if (p_function->return_type.has_type && (p_function->return_type.kind != DataType::BUILTIN || p_function->return_type.builtin_type != Variant::NIL)) {
  7103. if (!p_function->body->has_return) {
  7104. _set_error("A non-void function must return a value in all possible paths.", p_function->line);
  7105. return;
  7106. }
  7107. }
  7108. if (p_function->has_yield) {
  7109. // yield() will make the function return a GDScriptFunctionState, so the type is ambiguous
  7110. p_function->return_type.has_type = false;
  7111. p_function->return_type.may_yield = true;
  7112. }
  7113. }
  7114. void GDScriptParser::_check_class_blocks_types(ClassNode *p_class) {
  7115. // Function blocks
  7116. for (int i = 0; i < p_class->static_functions.size(); i++) {
  7117. current_function = p_class->static_functions[i];
  7118. current_block = current_function->body;
  7119. _mark_line_as_safe(current_function->line);
  7120. _check_block_types(current_block);
  7121. current_block = nullptr;
  7122. current_function = nullptr;
  7123. if (error_set) {
  7124. return;
  7125. }
  7126. }
  7127. for (int i = 0; i < p_class->functions.size(); i++) {
  7128. current_function = p_class->functions[i];
  7129. current_block = current_function->body;
  7130. _mark_line_as_safe(current_function->line);
  7131. _check_block_types(current_block);
  7132. current_block = nullptr;
  7133. current_function = nullptr;
  7134. if (error_set) {
  7135. return;
  7136. }
  7137. }
  7138. #ifdef DEBUG_ENABLED
  7139. // Warnings
  7140. for (int i = 0; i < p_class->variables.size(); i++) {
  7141. if (p_class->variables[i].usages == 0) {
  7142. _add_warning(GDScriptWarning::UNUSED_CLASS_VARIABLE, p_class->variables[i].line, p_class->variables[i].identifier);
  7143. }
  7144. }
  7145. for (int i = 0; i < p_class->_signals.size(); i++) {
  7146. if (p_class->_signals[i].emissions == 0) {
  7147. _add_warning(GDScriptWarning::UNUSED_SIGNAL, p_class->_signals[i].line, p_class->_signals[i].name);
  7148. }
  7149. }
  7150. #endif // DEBUG_ENABLED
  7151. // Inner classes
  7152. for (int i = 0; i < p_class->subclasses.size(); i++) {
  7153. current_class = p_class->subclasses[i];
  7154. _check_class_blocks_types(current_class);
  7155. if (error_set) {
  7156. return;
  7157. }
  7158. current_class = p_class;
  7159. }
  7160. }
  7161. #ifdef DEBUG_ENABLED
  7162. static String _find_function_name(const GDScriptParser::OperatorNode *p_call) {
  7163. switch (p_call->arguments[0]->type) {
  7164. case GDScriptParser::Node::TYPE_TYPE: {
  7165. return Variant::get_type_name(static_cast<GDScriptParser::TypeNode *>(p_call->arguments[0])->vtype);
  7166. } break;
  7167. case GDScriptParser::Node::TYPE_BUILT_IN_FUNCTION: {
  7168. return GDScriptFunctions::get_func_name(static_cast<GDScriptParser::BuiltInFunctionNode *>(p_call->arguments[0])->function);
  7169. } break;
  7170. default: {
  7171. int id_index = p_call->op == GDScriptParser::OperatorNode::OP_PARENT_CALL ? 0 : 1;
  7172. if (p_call->arguments.size() > id_index && p_call->arguments[id_index]->type == GDScriptParser::Node::TYPE_IDENTIFIER) {
  7173. return static_cast<GDScriptParser::IdentifierNode *>(p_call->arguments[id_index])->name;
  7174. }
  7175. } break;
  7176. }
  7177. return String();
  7178. }
  7179. #endif // DEBUG_ENABLED
  7180. void GDScriptParser::_check_block_types(BlockNode *p_block) {
  7181. Node *last_var_assign = nullptr;
  7182. // Check each statement
  7183. for (int z = 0; z < p_block->statements.size(); z++) {
  7184. Node *statement = p_block->statements[z];
  7185. switch (statement->type) {
  7186. case Node::TYPE_NEWLINE:
  7187. case Node::TYPE_BREAKPOINT: {
  7188. // Nothing to do
  7189. } break;
  7190. case Node::TYPE_ASSERT: {
  7191. AssertNode *an = static_cast<AssertNode *>(statement);
  7192. _mark_line_as_safe(an->line);
  7193. _reduce_node_type(an->condition);
  7194. _reduce_node_type(an->message);
  7195. } break;
  7196. case Node::TYPE_LOCAL_VAR: {
  7197. LocalVarNode *lv = static_cast<LocalVarNode *>(statement);
  7198. lv->datatype = _resolve_type(lv->datatype, lv->line);
  7199. _mark_line_as_safe(lv->line);
  7200. last_var_assign = lv->assign;
  7201. if (lv->assign) {
  7202. lv->assign_op->arguments[0]->set_datatype(lv->datatype);
  7203. DataType assign_type = _reduce_node_type(lv->assign);
  7204. #ifdef DEBUG_ENABLED
  7205. if (assign_type.has_type && assign_type.kind == DataType::BUILTIN && assign_type.builtin_type == Variant::NIL) {
  7206. if (lv->assign->type == Node::TYPE_OPERATOR) {
  7207. OperatorNode *call = static_cast<OperatorNode *>(lv->assign);
  7208. if (call->op == OperatorNode::OP_CALL || call->op == OperatorNode::OP_PARENT_CALL) {
  7209. _add_warning(GDScriptWarning::VOID_ASSIGNMENT, lv->line, _find_function_name(call));
  7210. }
  7211. }
  7212. }
  7213. if (lv->datatype.has_type && assign_type.may_yield && lv->assign->type == Node::TYPE_OPERATOR) {
  7214. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, lv->line, _find_function_name(static_cast<OperatorNode *>(lv->assign)));
  7215. }
  7216. for (int i = 0; i < current_class->variables.size(); i++) {
  7217. if (current_class->variables[i].identifier == lv->name) {
  7218. _add_warning(GDScriptWarning::SHADOWED_VARIABLE, lv->line, lv->name, itos(current_class->variables[i].line));
  7219. }
  7220. }
  7221. #endif // DEBUG_ENABLED
  7222. if (!_is_type_compatible(lv->datatype, assign_type)) {
  7223. // Try supertype test
  7224. if (_is_type_compatible(assign_type, lv->datatype)) {
  7225. _mark_line_as_unsafe(lv->line);
  7226. } else {
  7227. // Try implicit conversion
  7228. if (lv->datatype.kind != DataType::BUILTIN || !_is_type_compatible(lv->datatype, assign_type, true)) {
  7229. _set_error("The assigned value type (" + assign_type.to_string() + ") doesn't match the variable's type (" +
  7230. lv->datatype.to_string() + ").",
  7231. lv->line);
  7232. return;
  7233. }
  7234. // Replace assignment with implicit conversion
  7235. BuiltInFunctionNode *convert = alloc_node<BuiltInFunctionNode>();
  7236. convert->line = lv->line;
  7237. convert->function = GDScriptFunctions::TYPE_CONVERT;
  7238. ConstantNode *tgt_type = alloc_node<ConstantNode>();
  7239. tgt_type->line = lv->line;
  7240. tgt_type->value = (int)lv->datatype.builtin_type;
  7241. OperatorNode *convert_call = alloc_node<OperatorNode>();
  7242. convert_call->line = lv->line;
  7243. convert_call->op = OperatorNode::OP_CALL;
  7244. convert_call->arguments.push_back(convert);
  7245. convert_call->arguments.push_back(lv->assign);
  7246. convert_call->arguments.push_back(tgt_type);
  7247. lv->assign = convert_call;
  7248. lv->assign_op->arguments.write[1] = convert_call;
  7249. #ifdef DEBUG_ENABLED
  7250. if (lv->datatype.builtin_type == Variant::INT && assign_type.builtin_type == Variant::REAL) {
  7251. _add_warning(GDScriptWarning::NARROWING_CONVERSION, lv->line);
  7252. }
  7253. #endif // DEBUG_ENABLED
  7254. }
  7255. }
  7256. if (lv->datatype.infer_type) {
  7257. if (!assign_type.has_type) {
  7258. _set_error("The assigned value doesn't have a set type; the variable type can't be inferred.", lv->line);
  7259. return;
  7260. }
  7261. if (assign_type.kind == DataType::BUILTIN && assign_type.builtin_type == Variant::NIL) {
  7262. _set_error("The variable type cannot be inferred because its value is \"null\".", lv->line);
  7263. return;
  7264. }
  7265. lv->datatype = assign_type;
  7266. lv->datatype.is_constant = false;
  7267. }
  7268. if (lv->datatype.has_type && !assign_type.has_type) {
  7269. _mark_line_as_unsafe(lv->line);
  7270. }
  7271. }
  7272. } break;
  7273. case Node::TYPE_OPERATOR: {
  7274. OperatorNode *op = static_cast<OperatorNode *>(statement);
  7275. switch (op->op) {
  7276. case OperatorNode::OP_ASSIGN:
  7277. case OperatorNode::OP_ASSIGN_ADD:
  7278. case OperatorNode::OP_ASSIGN_SUB:
  7279. case OperatorNode::OP_ASSIGN_MUL:
  7280. case OperatorNode::OP_ASSIGN_DIV:
  7281. case OperatorNode::OP_ASSIGN_MOD:
  7282. case OperatorNode::OP_ASSIGN_SHIFT_LEFT:
  7283. case OperatorNode::OP_ASSIGN_SHIFT_RIGHT:
  7284. case OperatorNode::OP_ASSIGN_BIT_AND:
  7285. case OperatorNode::OP_ASSIGN_BIT_OR:
  7286. case OperatorNode::OP_ASSIGN_BIT_XOR: {
  7287. if (op->arguments.size() < 2) {
  7288. _set_error("Parser bug: operation without enough arguments.", op->line, op->column);
  7289. return;
  7290. }
  7291. if (op->arguments[1] == last_var_assign) {
  7292. // Assignment was already checked
  7293. break;
  7294. }
  7295. _mark_line_as_safe(op->line);
  7296. DataType lh_type = _reduce_node_type(op->arguments[0]);
  7297. if (error_set) {
  7298. return;
  7299. }
  7300. if (check_types) {
  7301. if (!lh_type.has_type) {
  7302. if (op->arguments[0]->type == Node::TYPE_OPERATOR) {
  7303. _mark_line_as_unsafe(op->line);
  7304. }
  7305. }
  7306. if (lh_type.is_constant) {
  7307. _set_error("Can't assign a new value to a constant.", op->line);
  7308. return;
  7309. }
  7310. }
  7311. DataType rh_type;
  7312. if (op->op != OperatorNode::OP_ASSIGN) {
  7313. // Validate operation
  7314. DataType arg_type = _reduce_node_type(op->arguments[1]);
  7315. if (!arg_type.has_type) {
  7316. _mark_line_as_unsafe(op->line);
  7317. break;
  7318. }
  7319. Variant::Operator oper = _get_variant_operation(op->op);
  7320. bool valid = false;
  7321. rh_type = _get_operation_type(oper, lh_type, arg_type, valid);
  7322. if (check_types && !valid) {
  7323. _set_error("Invalid operand types (\"" + lh_type.to_string() + "\" and \"" + arg_type.to_string() +
  7324. "\") to assignment operator \"" + Variant::get_operator_name(oper) + "\".",
  7325. op->line);
  7326. return;
  7327. }
  7328. } else {
  7329. rh_type = _reduce_node_type(op->arguments[1]);
  7330. }
  7331. #ifdef DEBUG_ENABLED
  7332. if (rh_type.has_type && rh_type.kind == DataType::BUILTIN && rh_type.builtin_type == Variant::NIL) {
  7333. if (op->arguments[1]->type == Node::TYPE_OPERATOR) {
  7334. OperatorNode *call = static_cast<OperatorNode *>(op->arguments[1]);
  7335. if (call->op == OperatorNode::OP_CALL || call->op == OperatorNode::OP_PARENT_CALL) {
  7336. _add_warning(GDScriptWarning::VOID_ASSIGNMENT, op->line, _find_function_name(call));
  7337. }
  7338. }
  7339. }
  7340. if (lh_type.has_type && rh_type.may_yield && op->arguments[1]->type == Node::TYPE_OPERATOR) {
  7341. _add_warning(GDScriptWarning::FUNCTION_MAY_YIELD, op->line, _find_function_name(static_cast<OperatorNode *>(op->arguments[1])));
  7342. }
  7343. #endif // DEBUG_ENABLED
  7344. bool type_match = lh_type.has_type && rh_type.has_type;
  7345. if (check_types && !_is_type_compatible(lh_type, rh_type)) {
  7346. type_match = false;
  7347. // Try supertype test
  7348. if (_is_type_compatible(rh_type, lh_type)) {
  7349. _mark_line_as_unsafe(op->line);
  7350. } else {
  7351. // Try implicit conversion
  7352. if (lh_type.kind != DataType::BUILTIN || !_is_type_compatible(lh_type, rh_type, true)) {
  7353. _set_error("The assigned value's type (" + rh_type.to_string() + ") doesn't match the variable's type (" +
  7354. lh_type.to_string() + ").",
  7355. op->line);
  7356. return;
  7357. }
  7358. if (op->op == OperatorNode::OP_ASSIGN) {
  7359. // Replace assignment with implicit conversion
  7360. BuiltInFunctionNode *convert = alloc_node<BuiltInFunctionNode>();
  7361. convert->line = op->line;
  7362. convert->function = GDScriptFunctions::TYPE_CONVERT;
  7363. ConstantNode *tgt_type = alloc_node<ConstantNode>();
  7364. tgt_type->line = op->line;
  7365. tgt_type->value = (int)lh_type.builtin_type;
  7366. OperatorNode *convert_call = alloc_node<OperatorNode>();
  7367. convert_call->line = op->line;
  7368. convert_call->op = OperatorNode::OP_CALL;
  7369. convert_call->arguments.push_back(convert);
  7370. convert_call->arguments.push_back(op->arguments[1]);
  7371. convert_call->arguments.push_back(tgt_type);
  7372. op->arguments.write[1] = convert_call;
  7373. type_match = true; // Since we are converting, the type is matching
  7374. }
  7375. #ifdef DEBUG_ENABLED
  7376. if (lh_type.builtin_type == Variant::INT && rh_type.builtin_type == Variant::REAL) {
  7377. _add_warning(GDScriptWarning::NARROWING_CONVERSION, op->line);
  7378. }
  7379. #endif // DEBUG_ENABLED
  7380. }
  7381. }
  7382. #ifdef DEBUG_ENABLED
  7383. if (!rh_type.has_type && (op->op != OperatorNode::OP_ASSIGN || lh_type.has_type || op->arguments[0]->type == Node::TYPE_OPERATOR)) {
  7384. _mark_line_as_unsafe(op->line);
  7385. }
  7386. #endif // DEBUG_ENABLED
  7387. op->datatype.has_type = type_match;
  7388. } break;
  7389. case OperatorNode::OP_CALL:
  7390. case OperatorNode::OP_PARENT_CALL: {
  7391. _mark_line_as_safe(op->line);
  7392. DataType func_type = _reduce_function_call_type(op);
  7393. #ifdef DEBUG_ENABLED
  7394. if (func_type.has_type && (func_type.kind != DataType::BUILTIN || func_type.builtin_type != Variant::NIL)) {
  7395. // Figure out function name for warning
  7396. String func_name = _find_function_name(op);
  7397. if (func_name.empty()) {
  7398. func_name = "<undetected name>";
  7399. }
  7400. _add_warning(GDScriptWarning::RETURN_VALUE_DISCARDED, op->line, func_name);
  7401. }
  7402. #endif // DEBUG_ENABLED
  7403. if (error_set) {
  7404. return;
  7405. }
  7406. } break;
  7407. case OperatorNode::OP_YIELD: {
  7408. _mark_line_as_safe(op->line);
  7409. _reduce_node_type(op);
  7410. } break;
  7411. default: {
  7412. _mark_line_as_safe(op->line);
  7413. _reduce_node_type(op); // Test for safety anyway
  7414. #ifdef DEBUG_ENABLED
  7415. if (op->op == OperatorNode::OP_TERNARY_IF) {
  7416. _add_warning(GDScriptWarning::STANDALONE_TERNARY, statement->line);
  7417. } else {
  7418. _add_warning(GDScriptWarning::STANDALONE_EXPRESSION, statement->line);
  7419. }
  7420. #endif // DEBUG_ENABLED
  7421. }
  7422. }
  7423. } break;
  7424. case Node::TYPE_CONTROL_FLOW: {
  7425. ControlFlowNode *cf = static_cast<ControlFlowNode *>(statement);
  7426. _mark_line_as_safe(cf->line);
  7427. switch (cf->cf_type) {
  7428. case ControlFlowNode::CF_RETURN: {
  7429. DataType function_type = current_function->get_datatype();
  7430. DataType ret_type;
  7431. if (cf->arguments.size() > 0) {
  7432. ret_type = _reduce_node_type(cf->arguments[0]);
  7433. if (error_set) {
  7434. return;
  7435. }
  7436. }
  7437. if (!function_type.has_type) {
  7438. break;
  7439. }
  7440. if (function_type.kind == DataType::BUILTIN && function_type.builtin_type == Variant::NIL) {
  7441. // Return void, should not have arguments
  7442. if (cf->arguments.size() > 0) {
  7443. _set_error("A void function cannot return a value.", cf->line, cf->column);
  7444. return;
  7445. }
  7446. } else {
  7447. // Return something, cannot be empty
  7448. if (cf->arguments.size() == 0) {
  7449. _set_error("A non-void function must return a value.", cf->line, cf->column);
  7450. return;
  7451. }
  7452. if (!_is_type_compatible(function_type, ret_type)) {
  7453. _set_error("The returned value type (" + ret_type.to_string() + ") doesn't match the function return type (" +
  7454. function_type.to_string() + ").",
  7455. cf->line, cf->column);
  7456. return;
  7457. }
  7458. }
  7459. } break;
  7460. case ControlFlowNode::CF_MATCH: {
  7461. MatchNode *match_node = cf->match;
  7462. _transform_match_statment(match_node);
  7463. } break;
  7464. default: {
  7465. if (cf->body_else) {
  7466. _mark_line_as_safe(cf->body_else->line);
  7467. }
  7468. for (int i = 0; i < cf->arguments.size(); i++) {
  7469. _reduce_node_type(cf->arguments[i]);
  7470. }
  7471. } break;
  7472. }
  7473. } break;
  7474. case Node::TYPE_CONSTANT: {
  7475. ConstantNode *cn = static_cast<ConstantNode *>(statement);
  7476. // Strings are fine since they can be multiline comments
  7477. if (cn->value.get_type() == Variant::STRING) {
  7478. break;
  7479. }
  7480. FALLTHROUGH;
  7481. }
  7482. default: {
  7483. _mark_line_as_safe(statement->line);
  7484. _reduce_node_type(statement); // Test for safety anyway
  7485. #ifdef DEBUG_ENABLED
  7486. _add_warning(GDScriptWarning::STANDALONE_EXPRESSION, statement->line);
  7487. #endif // DEBUG_ENABLED
  7488. }
  7489. }
  7490. }
  7491. // Parse sub blocks
  7492. for (const List<BlockNode *>::Element *E = p_block->sub_blocks.front(); E; E = E->next()) {
  7493. current_block = E->get();
  7494. _check_block_types(current_block);
  7495. current_block = p_block;
  7496. if (error_set) {
  7497. return;
  7498. }
  7499. }
  7500. #ifdef DEBUG_ENABLED
  7501. // Warnings check
  7502. for (Map<StringName, LocalVarNode *>::Element *E = p_block->variables.front(); E; E = E->next()) {
  7503. LocalVarNode *lv = E->get();
  7504. if (!lv->name.operator String().begins_with("_")) {
  7505. if (lv->usages == 0) {
  7506. _add_warning(GDScriptWarning::UNUSED_VARIABLE, lv->line, lv->name);
  7507. } else if (lv->assignments == 0) {
  7508. _add_warning(GDScriptWarning::UNASSIGNED_VARIABLE, lv->line, lv->name);
  7509. }
  7510. }
  7511. }
  7512. #endif // DEBUG_ENABLED
  7513. }
  7514. void GDScriptParser::_set_error(const String &p_error, int p_line, int p_column) {
  7515. if (error_set) {
  7516. return; //allow no further errors
  7517. }
  7518. error = p_error;
  7519. error_line = p_line < 0 ? tokenizer->get_token_line() : p_line;
  7520. error_column = p_column < 0 ? tokenizer->get_token_column() : p_column;
  7521. error_set = true;
  7522. }
  7523. #ifdef DEBUG_ENABLED
  7524. 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) {
  7525. Vector<String> symbols;
  7526. if (!p_symbol1.empty()) {
  7527. symbols.push_back(p_symbol1);
  7528. }
  7529. if (!p_symbol2.empty()) {
  7530. symbols.push_back(p_symbol2);
  7531. }
  7532. if (!p_symbol3.empty()) {
  7533. symbols.push_back(p_symbol3);
  7534. }
  7535. if (!p_symbol4.empty()) {
  7536. symbols.push_back(p_symbol4);
  7537. }
  7538. _add_warning(p_code, p_line, symbols);
  7539. }
  7540. void GDScriptParser::_add_warning(int p_code, int p_line, const Vector<String> &p_symbols) {
  7541. if (GLOBAL_GET("debug/gdscript/warnings/exclude_addons").booleanize() && base_path.begins_with("res://addons/")) {
  7542. return;
  7543. }
  7544. if (tokenizer->is_ignoring_warnings() || !GLOBAL_GET("debug/gdscript/warnings/enable").booleanize()) {
  7545. return;
  7546. }
  7547. String warn_name = GDScriptWarning::get_name_from_code((GDScriptWarning::Code)p_code).to_lower();
  7548. if (tokenizer->get_warning_global_skips().has(warn_name)) {
  7549. return;
  7550. }
  7551. if (!GLOBAL_GET("debug/gdscript/warnings/" + warn_name)) {
  7552. return;
  7553. }
  7554. GDScriptWarning warn;
  7555. warn.code = (GDScriptWarning::Code)p_code;
  7556. warn.symbols = p_symbols;
  7557. warn.line = p_line == -1 ? tokenizer->get_token_line() : p_line;
  7558. List<GDScriptWarning>::Element *before = nullptr;
  7559. for (List<GDScriptWarning>::Element *E = warnings.front(); E; E = E->next()) {
  7560. if (E->get().line > warn.line) {
  7561. break;
  7562. }
  7563. before = E;
  7564. }
  7565. if (before) {
  7566. warnings.insert_after(before, warn);
  7567. } else {
  7568. warnings.push_front(warn);
  7569. }
  7570. }
  7571. #endif // DEBUG_ENABLED
  7572. String GDScriptParser::get_error() const {
  7573. return error;
  7574. }
  7575. int GDScriptParser::get_error_line() const {
  7576. return error_line;
  7577. }
  7578. int GDScriptParser::get_error_column() const {
  7579. return error_column;
  7580. }
  7581. bool GDScriptParser::has_error() const {
  7582. return error_set;
  7583. }
  7584. Error GDScriptParser::_parse(const String &p_base_path) {
  7585. base_path = p_base_path;
  7586. //assume class
  7587. ClassNode *main_class = alloc_node<ClassNode>();
  7588. main_class->initializer = alloc_node<BlockNode>();
  7589. main_class->initializer->parent_class = main_class;
  7590. main_class->ready = alloc_node<BlockNode>();
  7591. main_class->ready->parent_class = main_class;
  7592. current_class = main_class;
  7593. _parse_class(main_class);
  7594. if (tokenizer->get_token() == GDScriptTokenizer::TK_ERROR) {
  7595. error_set = false;
  7596. _set_error("Parse error: " + tokenizer->get_token_error());
  7597. }
  7598. bool for_completion_error_set = false;
  7599. if (error_set && for_completion) {
  7600. for_completion_error_set = true;
  7601. error_set = false;
  7602. }
  7603. if (error_set) {
  7604. return ERR_PARSE_ERROR;
  7605. }
  7606. if (dependencies_only) {
  7607. return OK;
  7608. }
  7609. _determine_inheritance(main_class);
  7610. if (error_set) {
  7611. return ERR_PARSE_ERROR;
  7612. }
  7613. current_class = main_class;
  7614. current_function = nullptr;
  7615. current_block = nullptr;
  7616. if (for_completion) {
  7617. check_types = false;
  7618. }
  7619. // Resolve all class-level stuff before getting into function blocks
  7620. _check_class_level_types(main_class);
  7621. if (error_set) {
  7622. return ERR_PARSE_ERROR;
  7623. }
  7624. // Resolve the function blocks
  7625. _check_class_blocks_types(main_class);
  7626. if (for_completion_error_set) {
  7627. error_set = true;
  7628. }
  7629. if (error_set) {
  7630. return ERR_PARSE_ERROR;
  7631. }
  7632. #ifdef DEBUG_ENABLED
  7633. // Resolve warning ignores
  7634. Vector<Pair<int, String>> warning_skips = tokenizer->get_warning_skips();
  7635. bool warning_is_error = GLOBAL_GET("debug/gdscript/warnings/treat_warnings_as_errors").booleanize();
  7636. for (List<GDScriptWarning>::Element *E = warnings.front(); E;) {
  7637. GDScriptWarning &w = E->get();
  7638. int skip_index = -1;
  7639. for (int i = 0; i < warning_skips.size(); i++) {
  7640. if (warning_skips[i].first > w.line) {
  7641. break;
  7642. }
  7643. skip_index = i;
  7644. }
  7645. List<GDScriptWarning>::Element *next = E->next();
  7646. bool erase = false;
  7647. if (skip_index != -1) {
  7648. if (warning_skips[skip_index].second == GDScriptWarning::get_name_from_code(w.code).to_lower()) {
  7649. erase = true;
  7650. }
  7651. warning_skips.remove(skip_index);
  7652. }
  7653. if (erase) {
  7654. warnings.erase(E);
  7655. } else if (warning_is_error) {
  7656. _set_error(w.get_message() + " (warning treated as error)", w.line);
  7657. return ERR_PARSE_ERROR;
  7658. }
  7659. E = next;
  7660. }
  7661. #endif // DEBUG_ENABLED
  7662. return OK;
  7663. }
  7664. Error GDScriptParser::parse_bytecode(const Vector<uint8_t> &p_bytecode, const String &p_base_path, const String &p_self_path) {
  7665. clear();
  7666. self_path = p_self_path;
  7667. GDScriptTokenizerBuffer *tb = memnew(GDScriptTokenizerBuffer);
  7668. tb->set_code_buffer(p_bytecode);
  7669. tokenizer = tb;
  7670. Error ret = _parse(p_base_path);
  7671. memdelete(tb);
  7672. tokenizer = nullptr;
  7673. return ret;
  7674. }
  7675. 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) {
  7676. clear();
  7677. self_path = p_self_path;
  7678. GDScriptTokenizerText *tt = memnew(GDScriptTokenizerText);
  7679. tt->set_code(p_code);
  7680. validating = p_just_validate;
  7681. for_completion = p_for_completion;
  7682. dependencies_only = p_dependencies_only;
  7683. #ifdef DEBUG_ENABLED
  7684. safe_lines = r_safe_lines;
  7685. #endif // DEBUG_ENABLED
  7686. tokenizer = tt;
  7687. Error ret = _parse(p_base_path);
  7688. memdelete(tt);
  7689. tokenizer = nullptr;
  7690. return ret;
  7691. }
  7692. bool GDScriptParser::is_tool_script() const {
  7693. return (head && head->type == Node::TYPE_CLASS && static_cast<const ClassNode *>(head)->tool);
  7694. }
  7695. const GDScriptParser::Node *GDScriptParser::get_parse_tree() const {
  7696. return head;
  7697. }
  7698. void GDScriptParser::clear() {
  7699. while (list) {
  7700. Node *l = list;
  7701. list = list->next;
  7702. memdelete(l);
  7703. }
  7704. head = nullptr;
  7705. list = nullptr;
  7706. completion_type = COMPLETION_NONE;
  7707. completion_node = nullptr;
  7708. completion_class = nullptr;
  7709. completion_function = nullptr;
  7710. completion_block = nullptr;
  7711. current_block = nullptr;
  7712. current_class = nullptr;
  7713. completion_found = false;
  7714. rpc_mode = MultiplayerAPI::RPC_MODE_DISABLED;
  7715. current_function = nullptr;
  7716. validating = false;
  7717. for_completion = false;
  7718. error_set = false;
  7719. indent_level.clear();
  7720. indent_level.push_back(IndentLevel(0, 0));
  7721. error_line = 0;
  7722. error_column = 0;
  7723. pending_newline = -1;
  7724. parenthesis = 0;
  7725. current_export.type = Variant::NIL;
  7726. check_types = true;
  7727. dependencies_only = false;
  7728. dependencies.clear();
  7729. error = "";
  7730. #ifdef DEBUG_ENABLED
  7731. safe_lines = nullptr;
  7732. #endif // DEBUG_ENABLED
  7733. }
  7734. GDScriptParser::CompletionType GDScriptParser::get_completion_type() {
  7735. return completion_type;
  7736. }
  7737. StringName GDScriptParser::get_completion_cursor() {
  7738. return completion_cursor;
  7739. }
  7740. int GDScriptParser::get_completion_line() {
  7741. return completion_line;
  7742. }
  7743. Variant::Type GDScriptParser::get_completion_built_in_constant() {
  7744. return completion_built_in_constant;
  7745. }
  7746. GDScriptParser::Node *GDScriptParser::get_completion_node() {
  7747. return completion_node;
  7748. }
  7749. GDScriptParser::BlockNode *GDScriptParser::get_completion_block() {
  7750. return completion_block;
  7751. }
  7752. GDScriptParser::ClassNode *GDScriptParser::get_completion_class() {
  7753. return completion_class;
  7754. }
  7755. GDScriptParser::FunctionNode *GDScriptParser::get_completion_function() {
  7756. return completion_function;
  7757. }
  7758. int GDScriptParser::get_completion_argument_index() {
  7759. return completion_argument;
  7760. }
  7761. int GDScriptParser::get_completion_identifier_is_function() {
  7762. return completion_ident_is_call;
  7763. }
  7764. GDScriptParser::GDScriptParser() {
  7765. head = nullptr;
  7766. list = nullptr;
  7767. tokenizer = nullptr;
  7768. pending_newline = -1;
  7769. clear();
  7770. }
  7771. GDScriptParser::~GDScriptParser() {
  7772. clear();
  7773. }