gdscript_parser.cpp 262 KB

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