gdscript_parser.cpp 280 KB

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