| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096 |
- /*
- AngelCode Scripting Library
- Copyright (c) 2003-2011 Andreas Jonsson
- This software is provided 'as-is', without any express or implied
- warranty. In no event will the authors be held liable for any
- damages arising from the use of this software.
- Permission is granted to anyone to use this software for any
- purpose, including commercial applications, and to alter it and
- redistribute it freely, subject to the following restrictions:
- 1. The origin of this software must not be misrepresented; you
- must not claim that you wrote the original software. If you use
- this software in a product, an acknowledgment in the product
- documentation would be appreciated but is not required.
- 2. Altered source versions must be plainly marked as such, and
- must not be misrepresented as being the original software.
- 3. This notice may not be removed or altered from any source
- distribution.
- The original version of this library can be located at:
- http://www.angelcode.com/angelscript/
- Andreas Jonsson
- [email protected]
- */
- // Modified by Lasse Öörni for Urho3D
- //
- // as_builder.cpp
- //
- // This is the class that manages the compilation of the scripts
- //
- #include "as_config.h"
- #include "as_builder.h"
- #include "as_parser.h"
- #include "as_compiler.h"
- #include "as_tokendef.h"
- #include "as_string_util.h"
- #include "as_outputbuffer.h"
- #include "as_texts.h"
- #include "as_scriptobject.h"
- BEGIN_AS_NAMESPACE
- asCBuilder::asCBuilder(asCScriptEngine *engine, asCModule *module)
- {
- this->engine = engine;
- this->module = module;
- }
- asCBuilder::~asCBuilder()
- {
- asUINT n;
- // Free all functions
- for( n = 0; n < functions.GetLength(); n++ )
- {
- if( functions[n] )
- {
- if( functions[n]->node )
- {
- functions[n]->node->Destroy(engine);
- }
- asDELETE(functions[n],sFunctionDescription);
- }
- functions[n] = 0;
- }
- // Free all global variables
- for( n = 0; n < globVariables.GetLength(); n++ )
- {
- if( globVariables[n] )
- {
- if( globVariables[n]->nextNode )
- {
- globVariables[n]->nextNode->Destroy(engine);
- }
- asDELETE(globVariables[n],sGlobalVariableDescription);
- globVariables[n] = 0;
- }
- }
- // Free all the loaded files
- for( n = 0; n < scripts.GetLength(); n++ )
- {
- if( scripts[n] )
- {
- asDELETE(scripts[n],asCScriptCode);
- }
- scripts[n] = 0;
- }
- // Free all class declarations
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- if( classDeclarations[n] )
- {
- if( classDeclarations[n]->node )
- {
- classDeclarations[n]->node->Destroy(engine);
- }
- asDELETE(classDeclarations[n],sClassDeclaration);
- classDeclarations[n] = 0;
- }
- }
- for( n = 0; n < interfaceDeclarations.GetLength(); n++ )
- {
- if( interfaceDeclarations[n] )
- {
- if( interfaceDeclarations[n]->node )
- {
- interfaceDeclarations[n]->node->Destroy(engine);
- }
- asDELETE(interfaceDeclarations[n],sClassDeclaration);
- interfaceDeclarations[n] = 0;
- }
- }
- for( n = 0; n < namedTypeDeclarations.GetLength(); n++ )
- {
- if( namedTypeDeclarations[n] )
- {
- if( namedTypeDeclarations[n]->node )
- {
- namedTypeDeclarations[n]->node->Destroy(engine);
- }
- asDELETE(namedTypeDeclarations[n],sClassDeclaration);
- namedTypeDeclarations[n] = 0;
- }
- }
- for( n = 0; n < funcDefs.GetLength(); n++ )
- {
- if( funcDefs[n] )
- {
- if( funcDefs[n]->node )
- funcDefs[n]->node->Destroy(engine);
- asDELETE(funcDefs[n],sFuncDef);
- funcDefs[n] = 0;
- }
- }
- }
- int asCBuilder::AddCode(const char *name, const char *code, int codeLength, int lineOffset, int sectionIdx, bool makeCopy)
- {
- asCScriptCode *script = asNEW(asCScriptCode);
- int r = script->SetCode(name, code, codeLength, makeCopy);
- script->lineOffset = lineOffset;
- script->idx = sectionIdx;
- scripts.PushLast(script);
- return r;
- }
- int asCBuilder::Build()
- {
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- ParseScripts();
- CompileClasses();
- CompileGlobalVariables();
- CompileFunctions();
- if( numErrors > 0 )
- return asERROR;
- return asSUCCESS;
- }
- int asCBuilder::CompileGlobalVar(const char *sectionName, const char *code, int lineOffset)
- {
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- // Add the string to the script code
- asCScriptCode *script = asNEW(asCScriptCode);
- script->SetCode(sectionName, code, true);
- script->lineOffset = lineOffset;
- scripts.PushLast(script);
- // Parse the string
- asCParser parser(this);
- if( parser.ParseScript(scripts[0]) < 0 )
- return asERROR;
- asCScriptNode *node = parser.GetScriptNode();
- // Make sure there is nothing else than the global variable in the script code
- if( node == 0 ||
- node->firstChild == 0 ||
- node->firstChild != node->lastChild ||
- node->firstChild->nodeType != snGlobalVar )
- {
- WriteError(script->name.AddressOf(), TXT_ONLY_ONE_VARIABLE_ALLOWED, 0, 0);
- return asERROR;
- }
- node = node->firstChild;
- node->DisconnectParent();
- RegisterGlobalVar(node, script);
- CompileGlobalVariables();
- if( numErrors > 0 )
- {
- // Remove the variable from the module, if it was registered
- if( globVariables.GetLength() > 0 )
- {
- module->RemoveGlobalVar(module->GetGlobalVarCount()-1);
- }
- return asERROR;
- }
- return 0;
- }
- int asCBuilder::ValidateDefaultArgs(asCScriptCode *script, asCScriptNode *node, asCScriptFunction *func)
- {
- int firstArgWithDefaultValue = -1;
- for( asUINT n = 0; n < func->defaultArgs.GetLength(); n++ )
- {
- if( func->defaultArgs[n] )
- firstArgWithDefaultValue = n;
- else if( firstArgWithDefaultValue >= 0 )
- {
- int r, c;
- script->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_DEF_ARG_MISSING_IN_FUNC_s, func->GetDeclaration());
- WriteError(script->name.AddressOf(), str.AddressOf(), r, c);
- return asINVALID_DECLARATION;
- }
- }
- return 0;
- }
- int asCBuilder::CompileFunction(const char *sectionName, const char *code, int lineOffset, asDWORD compileFlags, asCScriptFunction **outFunc)
- {
- asASSERT(outFunc != 0);
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- // Add the string to the script code
- asCScriptCode *script = asNEW(asCScriptCode);
- script->SetCode(sectionName, code, true);
- script->lineOffset = lineOffset;
- scripts.PushLast(script);
- // Parse the string
- asCParser parser(this);
- if( parser.ParseScript(scripts[0]) < 0 )
- return asERROR;
- asCScriptNode *node = parser.GetScriptNode();
- // Make sure there is nothing else than the function in the script code
- if( node == 0 ||
- node->firstChild == 0 ||
- node->firstChild != node->lastChild ||
- node->firstChild->nodeType != snFunction )
- {
- WriteError(script->name.AddressOf(), TXT_ONLY_ONE_FUNCTION_ALLOWED, 0, 0);
- return asERROR;
- }
- // Find the function node
- node = node->firstChild;
- // Create the function
- bool isConstructor, isDestructor, isPrivate;
- asCScriptFunction *func = asNEW(asCScriptFunction)(engine,module,asFUNC_SCRIPT);
- GetParsedFunctionDetails(node, scripts[0], 0, func->name, func->returnType, func->parameterTypes, func->inOutFlags, func->defaultArgs, func->isReadOnly, isConstructor, isDestructor, isPrivate);
- func->id = engine->GetNextScriptFunctionId();
- func->scriptSectionIdx = engine->GetScriptSectionNameIndex(sectionName ? sectionName : "");
- // Make sure the default args are declared correctly
- int r = ValidateDefaultArgs(script, node, func);
- if( r < 0 )
- {
- func->Release();
- return asERROR;
- }
- // Tell the engine that the function exists already so the compiler can access it
- if( compileFlags & asCOMP_ADD_TO_MODULE )
- {
- int r = CheckNameConflict(func->name.AddressOf(), node, scripts[0]);
- if( r < 0 )
- {
- func->Release();
- return asERROR;
- }
- module->globalFunctions.PushLast(func);
- func->AddRef();
- module->AddScriptFunction(func);
- }
- else
- engine->SetScriptFunction(func);
- // Fill in the function info for the builder too
- node->DisconnectParent();
- sFunctionDescription *funcDesc = asNEW(sFunctionDescription);
- functions.PushLast(funcDesc);
- funcDesc->script = scripts[0];
- funcDesc->node = node;
- funcDesc->name = func->name;
- funcDesc->funcId = func->id;
- asCCompiler compiler(engine);
- if( compiler.CompileFunction(this, functions[0]->script, functions[0]->node, func) >= 0 )
- {
- // Return the function
- *outFunc = func;
- }
- else
- {
- // If the function was added to the module then remove it again
- if( compileFlags & asCOMP_ADD_TO_MODULE )
- {
- module->globalFunctions.RemoveValue(func);
- module->scriptFunctions.RemoveValue(func);
- func->Release();
- func->Release();
- }
- func->Release();
- return asERROR;
- }
- return asSUCCESS;
- }
- void asCBuilder::ParseScripts()
- {
- asCArray<asCParser*> parsers((int)scripts.GetLength());
- // Parse all the files as if they were one
- asUINT n = 0;
- for( n = 0; n < scripts.GetLength(); n++ )
- {
- asCParser *parser = asNEW(asCParser)(this);
- parsers.PushLast(parser);
- // Parse the script file
- parser->ParseScript(scripts[n]);
- }
- if( numErrors == 0 )
- {
- // Find all type declarations
- for( n = 0; n < scripts.GetLength(); n++ )
- {
- asCScriptNode *node = parsers[n]->GetScriptNode();
- // Find structure definitions first
- node = node->firstChild;
- while( node )
- {
- asCScriptNode *next = node->next;
- if( node->nodeType == snClass )
- {
- node->DisconnectParent();
- RegisterClass(node, scripts[n]);
- }
- else if( node->nodeType == snInterface )
- {
- node->DisconnectParent();
- RegisterInterface(node, scripts[n]);
- }
- // Handle enumeration
- else if( node->nodeType == snEnum )
- {
- node->DisconnectParent();
- RegisterEnum(node, scripts[n]);
- }
- // Handle typedef
- else if( node->nodeType == snTypedef )
- {
- node->DisconnectParent();
- RegisterTypedef(node, scripts[n]);
- }
- else if( node->nodeType == snFuncDef )
- {
- node->DisconnectParent();
- RegisterFuncDef(node, scripts[n]);
- }
- node = next;
- }
- }
- // Register the complete function definitions
- for( n = 0; n < funcDefs.GetLength(); n++ )
- {
- CompleteFuncDef(funcDefs[n]);
- }
- // Register script methods found in the interfaces
- for( n = 0; n < interfaceDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = interfaceDeclarations[n];
- asCScriptNode *node = decl->node->firstChild->next;
- while( node )
- {
- asCScriptNode *next = node->next;
- if( node->nodeType == snFunction )
- {
- node->DisconnectParent();
- RegisterScriptFunction(engine->GetNextScriptFunctionId(), node, decl->script, decl->objType, true);
- }
- node = next;
- }
- }
- // Now the interfaces have been completely established, now we need to determine if
- // the same interface has already been registered before, and if so reuse the interface id.
- module->ResolveInterfaceIds();
- // Register script methods found in the structures
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = classDeclarations[n];
- asCScriptNode *node = decl->node->firstChild->next;
- // Skip list of classes and interfaces
- while( node && node->nodeType == snIdentifier )
- node = node->next;
- while( node )
- {
- asCScriptNode *next = node->next;
- if( node->nodeType == snFunction )
- {
- node->DisconnectParent();
- RegisterScriptFunction(engine->GetNextScriptFunctionId(), node, decl->script, decl->objType);
- }
- node = next;
- }
- // Make sure the default factory & constructor exists for classes
- if( decl->objType->beh.construct == engine->scriptTypeBehaviours.beh.construct )
- {
- AddDefaultConstructor(decl->objType, decl->script);
- }
- }
- // Find other global nodes
- for( n = 0; n < scripts.GetLength(); n++ )
- {
- // Find other global nodes
- asCScriptNode *node = parsers[n]->GetScriptNode();
- node = node->firstChild;
- while( node )
- {
- asCScriptNode *next = node->next;
- node->DisconnectParent();
- if( node->nodeType == snFunction )
- {
- RegisterScriptFunction(engine->GetNextScriptFunctionId(), node, scripts[n], 0, false, true);
- }
- else if( node->nodeType == snGlobalVar )
- {
- RegisterGlobalVar(node, scripts[n]);
- }
- else if( node->nodeType == snImport )
- {
- RegisterImportedFunction(module->GetNextImportedFunctionId(), node, scripts[n]);
- }
- else
- {
- // Unused script node
- int r, c;
- scripts[n]->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteWarning(scripts[n]->name.AddressOf(), TXT_UNUSED_SCRIPT_NODE, r, c);
- node->Destroy(engine);
- }
- node = next;
- }
- }
- }
- for( n = 0; n < parsers.GetLength(); n++ )
- {
- asDELETE(parsers[n],asCParser);
- }
- }
- void asCBuilder::CompileFunctions()
- {
- // Compile each function
- for( asUINT n = 0; n < functions.GetLength(); n++ )
- {
- if( functions[n] == 0 ) continue;
- asCCompiler compiler(engine);
- asCScriptFunction *func = engine->scriptFunctions[functions[n]->funcId];
- if( functions[n]->node )
- {
- int r, c;
- functions[n]->script->ConvertPosToRowCol(functions[n]->node->tokenPos, &r, &c);
- asCString str = func->GetDeclarationStr();
- str.Format(TXT_COMPILING_s, str.AddressOf());
- WriteInfo(functions[n]->script->name.AddressOf(), str.AddressOf(), r, c, true);
- compiler.CompileFunction(this, functions[n]->script, functions[n]->node, func);
- preMessage.isSet = false;
- }
- else
- {
- // This is the default constructor, that is generated
- // automatically if not implemented by the user.
- asASSERT( functions[n]->name == functions[n]->objType->name );
- compiler.CompileDefaultConstructor(this, functions[n]->script, func);
- }
- }
- }
- int asCBuilder::ParseDataType(const char *datatype, asCDataType *result)
- {
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- asCScriptCode source;
- source.SetCode("", datatype, true);
- asCParser parser(this);
- int r = parser.ParseDataType(&source);
- if( r < 0 )
- return asINVALID_TYPE;
- // Get data type and property name
- asCScriptNode *dataType = parser.GetScriptNode()->firstChild;
- *result = CreateDataTypeFromNode(dataType, &source, true);
- if( numErrors > 0 )
- return asINVALID_TYPE;
- return asSUCCESS;
- }
- int asCBuilder::ParseTemplateDecl(const char *decl, asCString *name, asCString *subtypeName)
- {
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- asCScriptCode source;
- source.SetCode("", decl, true);
- asCParser parser(this);
- int r = parser.ParseTemplateDecl(&source);
- if( r < 0 )
- return asINVALID_TYPE;
- // Get the template name and subtype name
- asCScriptNode *node = parser.GetScriptNode()->firstChild;
- name->Assign(&decl[node->tokenPos], node->tokenLength);
- node = node->next;
- subtypeName->Assign(&decl[node->tokenPos], node->tokenLength);
- // TODO: template: check for name conflicts
- if( numErrors > 0 )
- return asINVALID_DECLARATION;
- return asSUCCESS;
- }
- int asCBuilder::VerifyProperty(asCDataType *dt, const char *decl, asCString &name, asCDataType &type)
- {
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- if( dt )
- {
- // Verify that the object type exist
- if( dt->GetObjectType() == 0 )
- return asINVALID_OBJECT;
- }
- // Check property declaration and type
- asCScriptCode source;
- source.SetCode(TXT_PROPERTY, decl, true);
- asCParser parser(this);
- int r = parser.ParsePropertyDeclaration(&source);
- if( r < 0 )
- return asINVALID_DECLARATION;
- // Get data type and property name
- asCScriptNode *dataType = parser.GetScriptNode()->firstChild;
- asCScriptNode *nameNode = dataType->next;
- type = CreateDataTypeFromNode(dataType, &source);
- name.Assign(&decl[nameNode->tokenPos], nameNode->tokenLength);
- // Validate that the type really can be a registered property
- // We cannot use CanBeInstanciated, as it is allowed to register
- // properties of type that cannot otherwise be instanciated
- if( type.GetFuncDef() && !type.IsObjectHandle() )
- {
- // Function definitions must always be handles
- return asINVALID_DECLARATION;
- }
- // Verify property name
- if( dt )
- {
- if( CheckNameConflictMember(dt->GetObjectType(), name.AddressOf(), nameNode, &source, true) < 0 )
- return asNAME_TAKEN;
- }
- else
- {
- if( CheckNameConflict(name.AddressOf(), nameNode, &source) < 0 )
- return asNAME_TAKEN;
- }
- if( numErrors > 0 )
- return asINVALID_DECLARATION;
- return asSUCCESS;
- }
- asCObjectProperty *asCBuilder::GetObjectProperty(asCDataType &obj, const char *prop)
- {
- asASSERT(obj.GetObjectType() != 0);
- // TODO: Only search in config groups to which the module has access
- // TODO: optimize: Improve linear search
- asCArray<asCObjectProperty *> &props = obj.GetObjectType()->properties;
- for( asUINT n = 0; n < props.GetLength(); n++ )
- if( props[n]->name == prop )
- return props[n];
- return 0;
- }
- asCGlobalProperty *asCBuilder::GetGlobalProperty(const char *prop, bool *isCompiled, bool *isPureConstant, asQWORD *constantValue)
- {
- asUINT n;
- if( isCompiled ) *isCompiled = true;
- if( isPureConstant ) *isPureConstant = false;
- // TODO: optimize: Improve linear search
- // Check application registered properties
- asCArray<asCGlobalProperty *> *props = &(engine->registeredGlobalProps);
- for( n = 0; n < props->GetLength(); ++n )
- if( (*props)[n] && (*props)[n]->name == prop )
- {
- if( module )
- {
- // Find the config group for the global property
- asCConfigGroup *group = engine->FindConfigGroupForGlobalVar((*props)[n]->id);
- if( !group || group->HasModuleAccess(module->name.AddressOf()) )
- return (*props)[n];
- }
- else
- {
- // We're not compiling a module right now, so it must be a registered global property
- return (*props)[n];
- }
- }
- // TODO: optimize: Improve linear search
- // Check properties being compiled now
- asCArray<sGlobalVariableDescription *> *gvars = &globVariables;
- for( n = 0; n < gvars->GetLength(); ++n )
- {
- if( (*gvars)[n] && (*gvars)[n]->name == prop )
- {
- if( isCompiled ) *isCompiled = (*gvars)[n]->isCompiled;
- if( isPureConstant ) *isPureConstant = (*gvars)[n]->isPureConstant;
- if( constantValue ) *constantValue = (*gvars)[n]->constantValue;
- return (*gvars)[n]->property;
- }
- }
- // TODO: optimize: Improve linear search
- // Check previously compiled global variables
- if( module )
- {
- props = &module->scriptGlobals;
- for( n = 0; n < props->GetLength(); ++n )
- if( (*props)[n]->name == prop )
- return (*props)[n];
- }
- return 0;
- }
- int asCBuilder::ParseFunctionDeclaration(asCObjectType *objType, const char *decl, asCScriptFunction *func, bool isSystemFunction, asCArray<bool> *paramAutoHandles, bool *returnAutoHandle)
- {
- // TODO: Can't we use GetParsedFunctionDetails to do most of what is done in this function?
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- asCScriptCode source;
- source.SetCode(TXT_SYSTEM_FUNCTION, decl, true);
- asCParser parser(this);
- int r = parser.ParseFunctionDefinition(&source);
- if( r < 0 )
- return asINVALID_DECLARATION;
- asCScriptNode *node = parser.GetScriptNode();
- // Find name
- asCScriptNode *n = node->firstChild->next->next;
- func->name.Assign(&source.code[n->tokenPos], n->tokenLength);
- // Initialize a script function object for registration
- bool autoHandle;
- // Scoped reference types are allowed to use handle when returned from application functions
- func->returnType = CreateDataTypeFromNode(node->firstChild, &source, true, objType);
- func->returnType = ModifyDataTypeFromNode(func->returnType, node->firstChild->next, &source, 0, &autoHandle);
- if( autoHandle && (!func->returnType.IsObjectHandle() || func->returnType.IsReference()) )
- return asINVALID_DECLARATION;
- if( returnAutoHandle ) *returnAutoHandle = autoHandle;
- // Reference types cannot be returned by value from system functions
- if( isSystemFunction &&
- (func->returnType.GetObjectType() &&
- (func->returnType.GetObjectType()->flags & asOBJ_REF)) &&
- !(func->returnType.IsReference() ||
- func->returnType.IsObjectHandle()) )
- return asINVALID_DECLARATION;
- // Count number of parameters
- int paramCount = 0;
- n = n->next->firstChild;
- while( n )
- {
- paramCount++;
- n = n->next->next;
- if( n && n->nodeType == snIdentifier )
- n = n->next;
- if( n && n->nodeType == snExpression )
- n = n->next;
- }
- // Preallocate memory
- func->parameterTypes.Allocate(paramCount, false);
- func->inOutFlags.Allocate(paramCount, false);
- func->defaultArgs.Allocate(paramCount, false);
- if( paramAutoHandles ) paramAutoHandles->Allocate(paramCount, false);
- n = node->firstChild->next->next->next->firstChild;
- while( n )
- {
- asETypeModifiers inOutFlags;
- asCDataType type = CreateDataTypeFromNode(n, &source, false, objType);
- type = ModifyDataTypeFromNode(type, n->next, &source, &inOutFlags, &autoHandle);
- // Reference types cannot be passed by value to system functions
- if( isSystemFunction &&
- (type.GetObjectType() &&
- (type.GetObjectType()->flags & asOBJ_REF)) &&
- !(type.IsReference() ||
- type.IsObjectHandle()) )
- return asINVALID_DECLARATION;
- // Store the parameter type
- func->parameterTypes.PushLast(type);
- func->inOutFlags.PushLast(inOutFlags);
- // Don't permit void parameters
- if( type.GetTokenType() == ttVoid )
- return asINVALID_DECLARATION;
- if( autoHandle && (!type.IsObjectHandle() || type.IsReference()) )
- return asINVALID_DECLARATION;
- if( paramAutoHandles ) paramAutoHandles->PushLast(autoHandle);
- // Make sure that var type parameters are references
- if( type.GetTokenType() == ttQuestion &&
- !type.IsReference() )
- return asINVALID_DECLARATION;
- // Move to next parameter
- n = n->next->next;
- if( n && n->nodeType == snIdentifier )
- n = n->next;
- if( n && n->nodeType == snExpression )
- {
- // Strip out white space and comments to better share the string
- asCString *defaultArgStr = asNEW(asCString);
- *defaultArgStr = GetCleanExpressionString(n, &source);
- func->defaultArgs.PushLast(defaultArgStr);
- n = n->next;
- }
- else
- func->defaultArgs.PushLast(0);
- }
- // Set the read-only flag if const is declared after parameter list
- if( node->lastChild->nodeType == snUndefined && node->lastChild->tokenType == ttConst )
- {
- if( objType == 0 )
- return asINVALID_DECLARATION;
- func->isReadOnly = true;
- }
- else
- func->isReadOnly = false;
- // Make sure the default args are declared correctly
- ValidateDefaultArgs(&source, node, func);
- if( numErrors > 0 || numWarnings > 0 )
- return asINVALID_DECLARATION;
- return 0;
- }
- int asCBuilder::ParseVariableDeclaration(const char *decl, asCObjectProperty *var)
- {
- numErrors = 0;
- numWarnings = 0;
- preMessage.isSet = false;
- asCScriptCode source;
- source.SetCode(TXT_VARIABLE_DECL, decl, true);
- asCParser parser(this);
- int r = parser.ParsePropertyDeclaration(&source);
- if( r < 0 )
- return asINVALID_DECLARATION;
- asCScriptNode *node = parser.GetScriptNode();
- // Find name
- asCScriptNode *n = node->firstChild->next;
- var->name.Assign(&source.code[n->tokenPos], n->tokenLength);
- // Initialize a script variable object for registration
- var->type = CreateDataTypeFromNode(node->firstChild, &source);
- if( numErrors > 0 || numWarnings > 0 )
- return asINVALID_DECLARATION;
- return 0;
- }
- int asCBuilder::CheckNameConflictMember(asCObjectType *t, const char *name, asCScriptNode *node, asCScriptCode *code, bool isProperty)
- {
- // It's not necessary to check against object types
- // TODO: optimize: Improve linear search
- asCArray<asCObjectProperty *> &props = t->properties;
- for( asUINT n = 0; n < props.GetLength(); n++ )
- {
- if( props[n]->name == name )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_OBJ_PROPERTY, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- }
- // Property names must be checked against method names
- if( isProperty )
- {
- asCArray<int> methods = t->methods;
- for( asUINT n = 0; n < methods.GetLength(); n++ )
- {
- if( engine->scriptFunctions[methods[n]]->name == name )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_METHOD, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- }
- }
- return 0;
- }
- int asCBuilder::CheckNameConflict(const char *name, asCScriptNode *node, asCScriptCode *code)
- {
- // TODO: Must verify object types in all config groups, whether the module has access or not
- // Check against object types
- if( engine->GetObjectType(name) != 0 )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_EXTENDED_TYPE, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- // TODO: Must verify global properties in all config groups, whether the module has access or not
- // Check against global properties
- asCGlobalProperty *prop = GetGlobalProperty(name, 0, 0, 0);
- if( prop )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_GLOBAL_PROPERTY, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- // TODO: Property names must be checked against function names
- // Check against class types
- asUINT n;
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- if( classDeclarations[n]->name == name )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_STRUCT, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- }
- // Check against named types
- for( n = 0; n < namedTypeDeclarations.GetLength(); n++ )
- {
- if( namedTypeDeclarations[n]->name == name )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_IS_NAMED_TYPE, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- }
- // Must check for name conflicts with funcdefs
- for( n = 0; n < funcDefs.GetLength(); n++ )
- {
- if( funcDefs[n]->name == name )
- {
- if( code )
- {
- int r, c;
- code->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_IS_FUNCDEF, name);
- WriteError(code->name.AddressOf(), str.AddressOf(), r, c);
- }
- return -1;
- }
- }
- return 0;
- }
- int asCBuilder::RegisterFuncDef(asCScriptNode *node, asCScriptCode *file)
- {
- // Find the name
- asASSERT( node->firstChild->nodeType == snDataType );
- asCScriptNode *n = node->firstChild->next->next;
-
- asCString name;
- name.Assign(&file->code[n->tokenPos], n->tokenLength);
- // Check for name conflict with other types
- int r = CheckNameConflict(name.AddressOf(), node, file);
- if( asSUCCESS != r )
- {
- node->Destroy(engine);
- return r;
- }
- // The function definition should be stored as a asCScriptFunction so that the application
- // can use the asIScriptFunction interface to enumerate the return type and parameters
- // The return type and parameter types aren't determined in this function. A second pass is
- // necessary after all type declarations have been identified.
- sFuncDef *fd = asNEW(sFuncDef);
- fd->name = name;
- fd->node = node;
- fd->script = file;
- fd->idx = module->AddFuncDef(name.AddressOf());
- funcDefs.PushLast(fd);
- return 0;
- }
- void asCBuilder::CompleteFuncDef(sFuncDef *funcDef)
- {
- asCDataType returnType;
- asCArray<asCDataType> parameterTypes;
- asCArray<asETypeModifiers> inOutFlags;
- asCArray<asCString *> defaultArgs;
- bool isConstMethod;
- bool isConstructor;
- bool isDestructor;
- bool isPrivate;
- GetParsedFunctionDetails(funcDef->node, funcDef->script, 0, funcDef->name, returnType, parameterTypes, inOutFlags, defaultArgs, isConstMethod, isConstructor, isDestructor, isPrivate);
- asCScriptFunction *func = module->funcDefs[funcDef->idx];
- if( func )
- {
- func->returnType = returnType;
- for( asUINT p = 0; p < parameterTypes.GetLength(); p++ )
- {
- func->parameterTypes.PushLast(parameterTypes[p]);
- func->inOutFlags.PushLast(inOutFlags[p]);
- // Don't copy the default arg expression as it is not allowed for function definitions
- }
- }
- }
- int asCBuilder::RegisterGlobalVar(asCScriptNode *node, asCScriptCode *file)
- {
- // What data type is it?
- asCDataType type = CreateDataTypeFromNode(node->firstChild, file);
- if( !type.CanBeInstanciated() )
- {
- asCString str;
- // TODO: Change to "'type' cannot be declared as variable"
- str.Format(TXT_DATA_TYPE_CANT_BE_s, type.Format().AddressOf());
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- }
- asCScriptNode *n = node->firstChild->next;
- while( n )
- {
- // Verify that the name isn't taken
- asCString name(&file->code[n->tokenPos], n->tokenLength);
- CheckNameConflict(name.AddressOf(), n, file);
- // Register the global variable
- sGlobalVariableDescription *gvar = asNEW(sGlobalVariableDescription);
- globVariables.PushLast(gvar);
- gvar->script = file;
- gvar->name = name;
- gvar->isCompiled = false;
- gvar->datatype = type;
- gvar->isEnumValue = false;
- // TODO: Give error message if wrong
- asASSERT(!gvar->datatype.IsReference());
- gvar->idNode = n;
- gvar->nextNode = 0;
- if( n->next &&
- (n->next->nodeType == snAssignment ||
- n->next->nodeType == snArgList ||
- n->next->nodeType == snInitList ) )
- {
- gvar->nextNode = n->next;
- n->next->DisconnectParent();
- }
- gvar->property = module->AllocateGlobalProperty(name.AddressOf(), gvar->datatype);
- gvar->index = gvar->property->id;
- n = n->next;
- }
- node->Destroy(engine);
- return 0;
- }
- int asCBuilder::RegisterClass(asCScriptNode *node, asCScriptCode *file)
- {
- asCScriptNode *n = node->firstChild;
- asCString name(&file->code[n->tokenPos], n->tokenLength);
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- CheckNameConflict(name.AddressOf(), n, file);
- sClassDeclaration *decl = asNEW(sClassDeclaration);
- classDeclarations.PushLast(decl);
- decl->name = name;
- decl->script = file;
- decl->validState = 0;
- decl->node = node;
- asCObjectType *st = asNEW(asCObjectType)(engine);
- st->flags = asOBJ_REF | asOBJ_SCRIPT_OBJECT;
- if( node->tokenType == ttHandle )
- st->flags |= asOBJ_IMPLICIT_HANDLE;
- st->size = sizeof(asCScriptObject);
- st->name = name;
- module->classTypes.PushLast(st);
- engine->classTypes.PushLast(st);
- st->AddRef();
- decl->objType = st;
- // Add script classes to the GC
- engine->gc.AddScriptObjectToGC(st, &engine->objectTypeBehaviours);
- // Use the default script class behaviours
- st->beh = engine->scriptTypeBehaviours.beh;
- // TODO: Move this to asCObjectType so that the asCRestore can reuse it
- engine->scriptFunctions[st->beh.addref]->AddRef();
- engine->scriptFunctions[st->beh.release]->AddRef();
- engine->scriptFunctions[st->beh.gcEnumReferences]->AddRef();
- engine->scriptFunctions[st->beh.gcGetFlag]->AddRef();
- engine->scriptFunctions[st->beh.gcGetRefCount]->AddRef();
- engine->scriptFunctions[st->beh.gcReleaseAllReferences]->AddRef();
- engine->scriptFunctions[st->beh.gcSetFlag]->AddRef();
- engine->scriptFunctions[st->beh.copy]->AddRef();
- engine->scriptFunctions[st->beh.factory]->AddRef();
- engine->scriptFunctions[st->beh.construct]->AddRef();
- for( asUINT i = 1; i < st->beh.operators.GetLength(); i += 2 )
- engine->scriptFunctions[st->beh.operators[i]]->AddRef();
- return 0;
- }
- int asCBuilder::RegisterInterface(asCScriptNode *node, asCScriptCode *file)
- {
- asCScriptNode *n = node->firstChild;
- asCString name(&file->code[n->tokenPos], n->tokenLength);
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- CheckNameConflict(name.AddressOf(), n, file);
- sClassDeclaration *decl = asNEW(sClassDeclaration);
- interfaceDeclarations.PushLast(decl);
- decl->name = name;
- decl->script = file;
- decl->validState = 0;
- decl->node = node;
- // Register the object type for the interface
- asCObjectType *st = asNEW(asCObjectType)(engine);
- st->flags = asOBJ_REF | asOBJ_SCRIPT_OBJECT;
- st->size = 0; // Cannot be instanciated
- st->name = name;
- module->classTypes.PushLast(st);
- engine->classTypes.PushLast(st);
- st->AddRef();
- decl->objType = st;
- // Use the default script class behaviours
- st->beh.construct = 0;
- st->beh.addref = engine->scriptTypeBehaviours.beh.addref;
- engine->scriptFunctions[st->beh.addref]->AddRef();
- st->beh.release = engine->scriptTypeBehaviours.beh.release;
- engine->scriptFunctions[st->beh.release]->AddRef();
- st->beh.copy = 0;
- return 0;
- }
- void asCBuilder::CompileGlobalVariables()
- {
- bool compileSucceeded = true;
- // Store state of compilation (errors, warning, output)
- int currNumErrors = numErrors;
- int currNumWarnings = numWarnings;
- // Backup the original message stream
- bool msgCallback = engine->msgCallback;
- asSSystemFunctionInterface msgCallbackFunc = engine->msgCallbackFunc;
- void *msgCallbackObj = engine->msgCallbackObj;
- // Set the new temporary message stream
- asCOutputBuffer outBuffer;
- engine->SetMessageCallback(asMETHOD(asCOutputBuffer, Callback), &outBuffer, asCALL_THISCALL);
- asCOutputBuffer finalOutput;
- asCScriptFunction *initFunc = 0;
- asCArray<asCGlobalProperty*> initOrder;
- // We first try to compile all the primitive global variables, and only after that
- // compile the non-primitive global variables. This permits the constructors
- // for the complex types to use the already initialized variables of primitive
- // type. Note, we currently don't know which global variables are used in the
- // constructors, so we cannot guarantee that variables of complex types are
- // initialized in the correct order, so we won't reorder those.
- bool compilingPrimitives = true;
- // Compile each global variable
- while( compileSucceeded )
- {
- compileSucceeded = false;
- int accumErrors = 0;
- int accumWarnings = 0;
- // Restore state of compilation
- finalOutput.Clear();
- for( asUINT n = 0; n < globVariables.GetLength(); n++ )
- {
- sGlobalVariableDescription *gvar = globVariables[n];
- if( gvar->isCompiled )
- continue;
- asCByteCode init(engine);
- numWarnings = 0;
- numErrors = 0;
- outBuffer.Clear();
- // Skip this for now if we're not compiling complex types yet
- if( compilingPrimitives && !gvar->datatype.IsPrimitive() )
- continue;
- if( gvar->nextNode )
- {
- int r, c;
- gvar->script->ConvertPosToRowCol(gvar->nextNode->tokenPos, &r, &c);
- asCString str = gvar->datatype.Format();
- str += " " + gvar->name;
- str.Format(TXT_COMPILING_s, str.AddressOf());
- WriteInfo(gvar->script->name.AddressOf(), str.AddressOf(), r, c, true);
- }
- if( gvar->isEnumValue )
- {
- int r;
- if( gvar->nextNode )
- {
- asCCompiler comp(engine);
- asCScriptFunction func(engine, module, asFUNC_DUMMY);
- // Temporarily switch the type of the variable to int so it can be compiled properly
- asCDataType saveType;
- saveType = gvar->datatype;
- gvar->datatype = asCDataType::CreatePrimitive(ttInt, true);
- r = comp.CompileGlobalVariable(this, gvar->script, gvar->nextNode, gvar, &func);
- gvar->datatype = saveType;
- }
- else
- {
- r = 0;
- // When there is no assignment the value is the last + 1
- int enumVal = 0;
- if( n > 0 )
- {
- sGlobalVariableDescription *gvar2 = globVariables[n-1];
- if( gvar2->datatype == gvar->datatype )
- {
- // The integer value is stored in the lower bytes
- enumVal = (*(int*)&gvar2->constantValue) + 1;
- if( !gvar2->isCompiled )
- {
- // TODO: Need to get the correct script position
- int row, col;
- gvar->script->ConvertPosToRowCol(0, &row, &col);
- asCString str = gvar->datatype.Format();
- str += " " + gvar->name;
- str.Format(TXT_COMPILING_s, str.AddressOf());
- WriteInfo(gvar->script->name.AddressOf(), str.AddressOf(), row, col, true);
- str.Format(TXT_UNINITIALIZED_GLOBAL_VAR_s, gvar2->name.AddressOf());
- WriteError(gvar->script->name.AddressOf(), str.AddressOf(), row, col);
- r = -1;
- }
- }
- }
- // The integer value is stored in the lower bytes
- *(int*)&gvar->constantValue = enumVal;
- }
- if( r >= 0 )
- {
- // Set the value as compiled
- gvar->isCompiled = true;
- compileSucceeded = true;
- }
- }
- else
- {
- // Compile the global variable
- initFunc = asNEW(asCScriptFunction)(engine, module, asFUNC_DUMMY);
- asCCompiler comp(engine);
- int r = comp.CompileGlobalVariable(this, gvar->script, gvar->nextNode, gvar, initFunc);
- if( r >= 0 )
- {
- // Compilation succeeded
- gvar->isCompiled = true;
- compileSucceeded = true;
- }
- else
- {
- // Compilation failed
- asDELETE(initFunc, asCScriptFunction);
- initFunc = 0;
- }
- }
- if( gvar->isCompiled )
- {
- // Add warnings for this constant to the total build
- if( numWarnings )
- {
- currNumWarnings += numWarnings;
- if( msgCallback )
- outBuffer.SendToCallback(engine, &msgCallbackFunc, msgCallbackObj);
- }
- // Determine order of variable initializations
- if( gvar->property && !gvar->isEnumValue )
- initOrder.PushLast(gvar->property);
- // Does the function contain more than just a SUSPEND followed by a RET instruction?
- if( initFunc && initFunc->byteCode.GetLength() > 2 )
- {
- // Create the init function for this variable
- initFunc->id = engine->GetNextScriptFunctionId();
- engine->SetScriptFunction(initFunc);
- // Finalize the init function for this variable
- initFunc->funcType = asFUNC_SCRIPT;
- initFunc->returnType = asCDataType::CreatePrimitive(ttVoid, false);
- initFunc->scriptSectionIdx = engine->GetScriptSectionNameIndex(gvar->script->name.AddressOf());
- // Notify the GC of the new script function
- engine->gc.AddScriptObjectToGC(initFunc, &engine->functionBehaviours);
- gvar->property->SetInitFunc(initFunc);
- initFunc->Release();
- initFunc = 0;
- }
- else if( initFunc )
- {
- // Destroy the function as it won't be used
- asDELETE(initFunc, asCScriptFunction);
- initFunc = 0;
- }
- // Convert enums to true enum values, so subsequent compilations can access it as an enum
- if( gvar->isEnumValue )
- {
- asCObjectType *objectType = gvar->datatype.GetObjectType();
- asASSERT(NULL != objectType);
- asSEnumValue *e = asNEW(asSEnumValue);
- e->name = gvar->name;
- e->value = *(int*)&gvar->constantValue;
- objectType->enumValues.PushLast(e);
- }
- }
- else
- {
- // Add output to final output
- finalOutput.Append(outBuffer);
- accumErrors += numErrors;
- accumWarnings += numWarnings;
- }
- preMessage.isSet = false;
- }
- if( !compileSucceeded )
- {
- if( compilingPrimitives )
- {
- // No more primitives could be compiled, so
- // switch to compiling the complex variables
- compilingPrimitives = false;
- compileSucceeded = true;
- }
- else
- {
- // No more variables can be compiled
- // Add errors and warnings to total build
- currNumWarnings += accumWarnings;
- currNumErrors += accumErrors;
- if( msgCallback )
- finalOutput.SendToCallback(engine, &msgCallbackFunc, msgCallbackObj);
- }
- }
- }
- // Restore states
- engine->msgCallback = msgCallback;
- engine->msgCallbackFunc = msgCallbackFunc;
- engine->msgCallbackObj = msgCallbackObj;
- numWarnings = currNumWarnings;
- numErrors = currNumErrors;
- // Set the correct order of initialization
- if( numErrors == 0 )
- {
- // If the length of the arrays are not the same, then this is the compilation
- // of a single variable, in which case the initialization order of the previous
- // variables must be preserved.
- if( module->scriptGlobals.GetLength() == initOrder.GetLength() )
- module->scriptGlobals = initOrder;
- }
- // Delete the enum expressions
- for( asUINT n = 0; n < globVariables.GetLength(); n++ )
- {
- sGlobalVariableDescription *gvar = globVariables[n];
- if( gvar->isEnumValue )
- {
- // Destroy the gvar property
- if( gvar->nextNode )
- {
- gvar->nextNode->Destroy(engine);
- gvar->nextNode = 0;
- }
- if( gvar->property )
- {
- asDELETE(gvar->property, asCGlobalProperty);
- gvar->property = 0;
- }
- asDELETE(gvar, sGlobalVariableDescription);
- globVariables[n] = 0;
- }
- }
- }
- void asCBuilder::CompileClasses()
- {
- asUINT n;
- asCArray<sClassDeclaration*> toValidate((int)classDeclarations.GetLength());
- // Determine class inheritances and interfaces
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = classDeclarations[n];
- asCScriptCode *file = decl->script;
- // Find the base class that this class inherits from
- bool multipleInheritance = false;
- asCScriptNode *node = decl->node->firstChild->next;
- while( node && node->nodeType == snIdentifier )
- {
- // Get the interface name from the node
- asCString name(&file->code[node->tokenPos], node->tokenLength);
- // Find the object type for the interface
- asCObjectType *objType = GetObjectType(name.AddressOf());
- if( objType == 0 )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_IDENTIFIER_s_NOT_DATA_TYPE, name.AddressOf());
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- }
- else if( !(objType->flags & asOBJ_SCRIPT_OBJECT) )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_CANNOT_INHERIT_FROM_s, objType->name.AddressOf());
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- }
- else if( objType->size != 0 )
- {
- // The class inherits from another script class
- if( decl->objType->derivedFrom != 0 )
- {
- if( !multipleInheritance )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_CANNOT_INHERIT_FROM_MULTIPLE_CLASSES, r, c);
- multipleInheritance = true;
- }
- }
- else
- {
- // Make sure none of the base classes inherit from this one
- asCObjectType *base = objType;
- bool error = false;
- while( base != 0 )
- {
- if( base == decl->objType )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_CANNOT_INHERIT_FROM_SELF, r, c);
- error = true;
- break;
- }
- base = base->derivedFrom;
- }
- if( !error )
- {
- decl->objType->derivedFrom = objType;
- objType->AddRef();
- }
- }
- }
- else
- {
- // The class implements an interface
- if( decl->objType->Implements(objType) )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString msg;
- msg.Format(TXT_INTERFACE_s_ALREADY_IMPLEMENTED, objType->GetName());
- WriteWarning(file->name.AddressOf(), msg.AddressOf(), r, c);
- }
- else
- {
- decl->objType->interfaces.PushLast(objType);
- }
- }
- node = node->next;
- }
- }
- // Order class declarations so that base classes are compiled before derived classes.
- // This will allow the derived classes to copy properties and methods in the next step.
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = classDeclarations[n];
- asCObjectType *derived = decl->objType;
- asCObjectType *base = derived->derivedFrom;
- if( base == 0 ) continue;
- // If the base class is found after the derived class, then move the derived class to the end of the list
- for( asUINT m = n+1; m < classDeclarations.GetLength(); m++ )
- {
- sClassDeclaration *declBase = classDeclarations[m];
- if( base == declBase->objType )
- {
- classDeclarations.RemoveIndex(n);
- classDeclarations.PushLast(decl);
- // Decrease index so that we don't skip an entry
- n--;
- break;
- }
- }
- }
- // Go through each of the classes and register the object type descriptions
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = classDeclarations[n];
- // Add all properties and methods from the base class
- if( decl->objType->derivedFrom )
- {
- asCObjectType *baseType = decl->objType->derivedFrom;
- // The derived class inherits all interfaces from the base class
- for( unsigned int n = 0; n < baseType->interfaces.GetLength(); n++ )
- {
- if( !decl->objType->Implements(baseType->interfaces[n]) )
- {
- decl->objType->interfaces.PushLast(baseType->interfaces[n]);
- }
- else
- {
- // Warn if derived class already implements the interface
- int r, c;
- decl->script->ConvertPosToRowCol(decl->node->tokenPos, &r, &c);
- asCString msg;
- msg.Format(TXT_INTERFACE_s_ALREADY_IMPLEMENTED, baseType->interfaces[n]->GetName());
- WriteWarning(decl->script->name.AddressOf(), msg.AddressOf(), r, c);
- }
- }
- // TODO: Need to check for name conflict with new class methods
- // Copy properties from base class to derived class
- for( asUINT p = 0; p < baseType->properties.GetLength(); p++ )
- {
- asCObjectProperty *prop = AddPropertyToClass(decl, baseType->properties[p]->name, baseType->properties[p]->type, baseType->properties[p]->isPrivate);
- // The properties must maintain the same offset
- asASSERT(prop && prop->byteOffset == baseType->properties[p]->byteOffset); UNUSED_VAR(prop);
- }
- // Copy methods from base class to derived class
- for( asUINT m = 0; m < baseType->methods.GetLength(); m++ )
- {
- // If the derived class implements the same method, then don't add the base class' method
- asCScriptFunction *baseFunc = GetFunctionDescription(baseType->methods[m]);
- asCScriptFunction *derivedFunc = 0;
- bool found = false;
- for( asUINT d = 0; d < decl->objType->methods.GetLength(); d++ )
- {
- derivedFunc = GetFunctionDescription(decl->objType->methods[d]);
- if( derivedFunc->IsSignatureEqual(baseFunc) )
- {
- // Move the function from the methods array to the virtualFunctionTable
- decl->objType->methods.RemoveIndex(d);
- decl->objType->virtualFunctionTable.PushLast(derivedFunc);
- found = true;
- break;
- }
- }
- if( !found )
- {
- // Push the base class function on the virtual function table
- decl->objType->virtualFunctionTable.PushLast(baseType->virtualFunctionTable[m]);
- baseType->virtualFunctionTable[m]->AddRef();
- }
- decl->objType->methods.PushLast(baseType->methods[m]);
- engine->scriptFunctions[baseType->methods[m]]->AddRef();
- }
- }
- // Move this class' methods into the virtual function table
- for( asUINT m = 0; m < decl->objType->methods.GetLength(); m++ )
- {
- asCScriptFunction *func = GetFunctionDescription(decl->objType->methods[m]);
- if( func->funcType != asFUNC_VIRTUAL )
- {
- // Move the reference from the method list to the virtual function list
- decl->objType->methods.RemoveIndex(m);
- decl->objType->virtualFunctionTable.PushLast(func);
- // Substitute the function description in the method list for a virtual method
- // Make sure the methods are in the same order as the virtual function table
- decl->objType->methods.PushLast(CreateVirtualFunction(func, (int)decl->objType->virtualFunctionTable.GetLength() - 1));
- m--;
- }
- }
- // Enumerate each of the declared properties
- asCScriptNode *node = decl->node->firstChild->next;
- // Skip list of classes and interfaces
- while( node && node->nodeType == snIdentifier )
- node = node->next;
- while( node )
- {
- if( node->nodeType == snDeclaration )
- {
- bool isPrivate = false;
- if( node->firstChild && node->firstChild->tokenType == ttPrivate )
- isPrivate = true;
- asCScriptCode *file = decl->script;
- asCDataType dt = CreateDataTypeFromNode(isPrivate ? node->firstChild->next : node->firstChild, file);
- asCString name(&file->code[node->lastChild->tokenPos], node->lastChild->tokenLength);
- if( dt.IsReadOnly() )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_PROPERTY_CANT_BE_CONST, r, c);
- }
- CheckNameConflictMember(decl->objType, name.AddressOf(), node->lastChild, file, true);
- AddPropertyToClass(decl, name, dt, isPrivate, file, node);
- }
- else
- asASSERT(false);
- node = node->next;
- }
- toValidate.PushLast(decl);
- }
- // Verify that all interface methods are implemented in the classes
- // We do this here so the base class' methods have already been inherited
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = classDeclarations[n];
- for( asUINT m = 0; m < decl->objType->interfaces.GetLength(); m++ )
- {
- asCObjectType *objType = decl->objType->interfaces[m];
- for( asUINT i = 0; i < objType->methods.GetLength(); i++ )
- {
- if( !DoesMethodExist(decl->objType, objType->methods[i]) )
- {
- int r, c;
- decl->script->ConvertPosToRowCol(decl->node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_MISSING_IMPLEMENTATION_OF_s,
- engine->GetFunctionDeclaration(objType->methods[i]).AddressOf());
- WriteError(decl->script->name.AddressOf(), str.AddressOf(), r, c);
- }
- }
- }
- }
- // Verify that the declared structures are valid, e.g. that the structure
- // doesn't contain a member of its own type directly or indirectly
- while( toValidate.GetLength() > 0 )
- {
- asUINT numClasses = (asUINT)toValidate.GetLength();
- asCArray<sClassDeclaration*> toValidateNext((int)toValidate.GetLength());
- while( toValidate.GetLength() > 0 )
- {
- sClassDeclaration *decl = toValidate[toValidate.GetLength()-1];
- int validState = 1;
- for( asUINT n = 0; n < decl->objType->properties.GetLength(); n++ )
- {
- // A valid structure is one that uses only primitives or other valid objects
- asCObjectProperty *prop = decl->objType->properties[n];
- asCDataType dt = prop->type;
- if( dt.IsTemplate() )
- {
- asCDataType sub = dt;
- while( sub.IsTemplate() && !sub.IsObjectHandle() )
- sub = sub.GetSubType();
- dt = sub;
- }
- if( dt.IsObject() && !dt.IsObjectHandle() )
- {
- // Find the class declaration
- sClassDeclaration *pdecl = 0;
- for( asUINT p = 0; p < classDeclarations.GetLength(); p++ )
- {
- if( classDeclarations[p]->objType == dt.GetObjectType() )
- {
- pdecl = classDeclarations[p];
- break;
- }
- }
- if( pdecl )
- {
- if( pdecl->objType == decl->objType )
- {
- int r, c;
- decl->script->ConvertPosToRowCol(decl->node->tokenPos, &r, &c);
- WriteError(decl->script->name.AddressOf(), TXT_ILLEGAL_MEMBER_TYPE, r, c);
- validState = 2;
- break;
- }
- else if( pdecl->validState != 1 )
- {
- validState = pdecl->validState;
- break;
- }
- }
- }
- }
- if( validState == 1 )
- {
- decl->validState = 1;
- toValidate.PopLast();
- }
- else if( validState == 2 )
- {
- decl->validState = 2;
- toValidate.PopLast();
- }
- else
- {
- toValidateNext.PushLast(toValidate.PopLast());
- }
- }
- toValidate = toValidateNext;
- toValidateNext.SetLength(0);
- if( numClasses == toValidate.GetLength() )
- {
- int r, c;
- toValidate[0]->script->ConvertPosToRowCol(toValidate[0]->node->tokenPos, &r, &c);
- WriteError(toValidate[0]->script->name.AddressOf(), TXT_ILLEGAL_MEMBER_TYPE, r, c);
- break;
- }
- }
- if( numErrors > 0 ) return;
- // Urho3D: disable garbage collection from script classes
- /*
- // Verify potential circular references
- for( n = 0; n < classDeclarations.GetLength(); n++ )
- {
- sClassDeclaration *decl = classDeclarations[n];
- asCObjectType *ot = decl->objType;
- // Is there some path in which this structure is involved in circular references?
- for( asUINT p = 0; p < ot->properties.GetLength(); p++ )
- {
- asCDataType dt = ot->properties[p]->type;
- if( dt.IsObject() )
- {
- if( dt.IsObjectHandle() )
- {
- // TODO: optimize: If it is known that the handle can't be involved in a circular reference
- // then this object doesn't need to be marked as garbage collected.
- // - The application could set a flag when registering the object.
- // - The script classes can be marked as final, then the compiler will
- // be able to determine whether the class is garbage collected or not.
- ot->flags |= asOBJ_GC;
- break;
- }
- else if( dt.GetObjectType()->flags & asOBJ_GC )
- {
- // TODO: optimize: Just because the member type is a potential circle doesn't mean that this one is
- // Only if the object is of a type that can reference this type, either directly or indirectly
- ot->flags |= asOBJ_GC;
- break;
- }
- }
- }
- }
- */
- }
- int asCBuilder::CreateVirtualFunction(asCScriptFunction *func, int idx)
- {
- asCScriptFunction *vf = asNEW(asCScriptFunction)(engine, module, asFUNC_VIRTUAL);
- vf->funcType = asFUNC_VIRTUAL;
- vf->name = func->name;
- vf->returnType = func->returnType;
- vf->parameterTypes = func->parameterTypes;
- vf->inOutFlags = func->inOutFlags;
- vf->id = engine->GetNextScriptFunctionId();
- vf->scriptSectionIdx = func->scriptSectionIdx;
- vf->isReadOnly = func->isReadOnly;
- vf->objectType = func->objectType;
- vf->signatureId = func->signatureId;
- vf->isPrivate = func->isPrivate;
- vf->vfTableIdx = idx;
- vf->defaultArgs = func->defaultArgs;
- // Copy the default arg strings to avoid multiple deletes on the same object
- for( asUINT n = 0; n < vf->defaultArgs.GetLength(); n++ )
- if( vf->defaultArgs[n] )
- vf->defaultArgs[n] = asNEW(asCString)(*vf->defaultArgs[n]);
- module->AddScriptFunction(vf);
- // Add a dummy to the builder so that it doesn't mix up function ids
- functions.PushLast(0);
- return vf->id;
- }
- asCObjectProperty *asCBuilder::AddPropertyToClass(sClassDeclaration *decl, const asCString &name, const asCDataType &dt, bool isPrivate, asCScriptCode *file, asCScriptNode *node)
- {
- if( !dt.CanBeInstanciated() )
- {
- if( file && node )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_DATA_TYPE_CANT_BE_s, dt.Format().AddressOf());
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- }
- return 0;
- }
- return decl->objType->AddPropertyToClass(name, dt, isPrivate);
- }
- bool asCBuilder::DoesMethodExist(asCObjectType *objType, int methodId)
- {
- asCScriptFunction *method = GetFunctionDescription(methodId);
- for( asUINT n = 0; n < objType->methods.GetLength(); n++ )
- {
- asCScriptFunction *m = GetFunctionDescription(objType->methods[n]);
- if( m->name != method->name ) continue;
- if( m->returnType != method->returnType ) continue;
- if( m->isReadOnly != method->isReadOnly ) continue;
- if( m->parameterTypes != method->parameterTypes ) continue;
- if( m->inOutFlags != method->inOutFlags ) continue;
- return true;
- }
- return false;
- }
- void asCBuilder::AddDefaultConstructor(asCObjectType *objType, asCScriptCode *file)
- {
- int funcId = engine->GetNextScriptFunctionId();
- asCDataType returnType = asCDataType::CreatePrimitive(ttVoid, false);
- asCArray<asCDataType> parameterTypes;
- asCArray<asETypeModifiers> inOutFlags;
- asCArray<asCString *> defaultArgs;
- // Add the script function
- module->AddScriptFunction(file->idx, funcId, objType->name.AddressOf(), returnType, parameterTypes.AddressOf(), inOutFlags.AddressOf(), defaultArgs.AddressOf(), (asUINT)parameterTypes.GetLength(), false, objType);
- // Set it as default constructor
- if( objType->beh.construct )
- engine->scriptFunctions[objType->beh.construct]->Release();
- objType->beh.construct = funcId;
- objType->beh.constructors[0] = funcId;
- engine->scriptFunctions[funcId]->AddRef();
- // The bytecode for the default constructor will be generated
- // only after the potential inheritance has been established
- sFunctionDescription *func = asNEW(sFunctionDescription);
- functions.PushLast(func);
- func->script = file;
- func->node = 0;
- func->name = objType->name;
- func->objType = objType;
- func->funcId = funcId;
- // Add a default factory as well
- funcId = engine->GetNextScriptFunctionId();
- if( objType->beh.factory )
- engine->scriptFunctions[objType->beh.factory]->Release();
- objType->beh.factory = funcId;
- objType->beh.factories[0] = funcId;
- returnType = asCDataType::CreateObjectHandle(objType, false);
- module->AddScriptFunction(file->idx, funcId, objType->name.AddressOf(), returnType, parameterTypes.AddressOf(), inOutFlags.AddressOf(), defaultArgs.AddressOf(), (asUINT)parameterTypes.GetLength(), false);
- functions.PushLast(0);
- asCCompiler compiler(engine);
- compiler.CompileFactory(this, file, engine->scriptFunctions[funcId]);
- engine->scriptFunctions[funcId]->AddRef();
- }
- int asCBuilder::RegisterEnum(asCScriptNode *node, asCScriptCode *file)
- {
- // Grab the name of the enumeration
- asCScriptNode *tmp = node->firstChild;
- asASSERT(snDataType == tmp->nodeType);
- asCString name;
- asASSERT(snIdentifier == tmp->firstChild->nodeType);
- name.Assign(&file->code[tmp->firstChild->tokenPos], tmp->firstChild->tokenLength);
- // Check the name and add the enum
- int r = CheckNameConflict(name.AddressOf(), tmp->firstChild, file);
- if( asSUCCESS == r )
- {
- asCObjectType *st;
- asCDataType dataType;
- st = asNEW(asCObjectType)(engine);
- dataType.CreatePrimitive(ttInt, false);
- st->flags = asOBJ_ENUM;
- st->size = 4;
- st->name = name;
- module->enumTypes.PushLast(st);
- st->AddRef();
- engine->classTypes.PushLast(st);
- // Store the location of this declaration for reference in name collisions
- sClassDeclaration *decl = asNEW(sClassDeclaration);
- decl->name = name;
- decl->script = file;
- decl->validState = 0;
- decl->node = NULL;
- decl->objType = st;
- namedTypeDeclarations.PushLast(decl);
- asCDataType type = CreateDataTypeFromNode(tmp, file);
- asASSERT(!type.IsReference());
- tmp = tmp->next;
- while( tmp )
- {
- asASSERT(snIdentifier == tmp->nodeType);
- asCString name(&file->code[tmp->tokenPos], tmp->tokenLength);
- // Check for name conflict errors with other values in the enum
- r = 0;
- for( size_t n = globVariables.GetLength(); n-- > 0; )
- {
- sGlobalVariableDescription *gvar = globVariables[n];
- if( gvar->datatype != type )
- break;
- if( gvar->name == name )
- {
- r = asNAME_TAKEN;
- break;
- }
- }
- if( asSUCCESS != r )
- {
- int r, c;
- file->ConvertPosToRowCol(tmp->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_NAME_CONFLICT_s_ALREADY_USED, name.AddressOf());
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- tmp = tmp->next;
- if( tmp && tmp->nodeType == snAssignment )
- tmp = tmp->next;
- continue;
- }
- // check for assignment
- asCScriptNode *asnNode = tmp->next;
- if( asnNode && snAssignment == asnNode->nodeType )
- asnNode->DisconnectParent();
- else
- asnNode = 0;
- // Create the global variable description so the enum value can be evaluated
- sGlobalVariableDescription *gvar = asNEW(sGlobalVariableDescription);
- globVariables.PushLast(gvar);
- gvar->script = file;
- gvar->idNode = 0;
- gvar->nextNode = asnNode;
- gvar->name = name;
- gvar->datatype = type;
- // No need to allocate space on the global memory stack since the values are stored in the asCObjectType
- gvar->index = 0;
- gvar->isCompiled = false;
- gvar->isPureConstant = true;
- gvar->isEnumValue = true;
- gvar->constantValue = 0xdeadbeef;
- // Allocate dummy property so we can compile the value.
- // This will be removed later on so we don't add it to the engine.
- gvar->property = asNEW(asCGlobalProperty);
- gvar->property->name = name;
- gvar->property->type = gvar->datatype;
- gvar->property->id = 0;
- tmp = tmp->next;
- }
- }
- node->Destroy(engine);
- return r;
- }
- int asCBuilder::RegisterTypedef(asCScriptNode *node, asCScriptCode *file)
- {
- // Get the native data type
- asCScriptNode *tmp = node->firstChild;
- asASSERT(NULL != tmp && snDataType == tmp->nodeType);
- asCDataType dataType;
- dataType.CreatePrimitive(tmp->tokenType, false);
- dataType.SetTokenType(tmp->tokenType);
- tmp = tmp->next;
- // Grab the name of the typedef
- asASSERT(NULL != tmp && NULL == tmp->next);
- asCString name;
- name.Assign(&file->code[tmp->tokenPos], tmp->tokenLength);
- // If the name is not already in use add it
- int r = CheckNameConflict(name.AddressOf(), tmp, file);
- if( asSUCCESS == r )
- {
- // Create the new type
- asCObjectType *st = asNEW(asCObjectType)(engine);
- st->flags = asOBJ_TYPEDEF;
- st->size = dataType.GetSizeInMemoryBytes();
- st->name = name;
- st->templateSubType = dataType;
- st->AddRef();
- module->typeDefs.PushLast(st);
- engine->classTypes.PushLast(st);
- // Store the location of this declaration for reference in name collisions
- sClassDeclaration *decl = asNEW(sClassDeclaration);
- decl->name = name;
- decl->script = file;
- decl->validState = 0;
- decl->node = NULL;
- decl->objType = st;
- namedTypeDeclarations.PushLast(decl);
- }
- node->Destroy(engine);
- if( r < 0 )
- {
- engine->ConfigError(r);
- }
- return 0;
- }
- void asCBuilder::GetParsedFunctionDetails(asCScriptNode *node, asCScriptCode *file, asCObjectType *objType, asCString &name, asCDataType &returnType, asCArray<asCDataType> ¶meterTypes, asCArray<asETypeModifiers> &inOutFlags, asCArray<asCString *> &defaultArgs, bool &isConstMethod, bool &isConstructor, bool &isDestructor, bool &isPrivate)
- {
- node = node->firstChild;
- // Is the function a private class method?
- isPrivate = false;
- if( node->tokenType == ttPrivate )
- {
- isPrivate = true;
- node = node->next;
- }
- // Find the name
- isConstructor = false;
- isDestructor = false;
- asCScriptNode *n = 0;
- if( node->nodeType == snDataType )
- n = node->next->next;
- else
- {
- // If the first node is a ~ token, then we know it is a destructor
- if( node->tokenType == ttBitNot )
- {
- n = node->next;
- isDestructor = true;
- }
- else
- {
- n = node;
- isConstructor = true;
- }
- }
- name.Assign(&file->code[n->tokenPos], n->tokenLength);
- // Initialize a script function object for registration
- if( !isConstructor && !isDestructor )
- {
- returnType = CreateDataTypeFromNode(node, file);
- returnType = ModifyDataTypeFromNode(returnType, node->next, file, 0, 0);
- }
- else
- returnType = asCDataType::CreatePrimitive(ttVoid, false);
- // Is this a const method?
- if( objType && n->next->next && n->next->next->tokenType == ttConst )
- isConstMethod = true;
- else
- isConstMethod = false;
- // Count the number of parameters
- int count = 0;
- asCScriptNode *c = n->next->firstChild;
- while( c )
- {
- count++;
- c = c->next->next;
- if( c && c->nodeType == snIdentifier )
- c = c->next;
- if( c && c->nodeType == snExpression )
- c = c->next;
- }
- // Get the parameter types
- parameterTypes.Allocate(count, false);
- inOutFlags.Allocate(count, false);
- defaultArgs.Allocate(count, false);
- n = n->next->firstChild;
- while( n )
- {
- asETypeModifiers inOutFlag;
- asCDataType type = CreateDataTypeFromNode(n, file);
- type = ModifyDataTypeFromNode(type, n->next, file, &inOutFlag, 0);
- // Store the parameter type
- parameterTypes.PushLast(type);
- inOutFlags.PushLast(inOutFlag);
- // Move to next parameter
- n = n->next->next;
- if( n && n->nodeType == snIdentifier )
- n = n->next;
-
- if( n && n->nodeType == snExpression )
- {
- // Strip out white space and comments to better share the string
- asCString *defaultArgStr = asNEW(asCString);
- *defaultArgStr = GetCleanExpressionString(n, file);
- defaultArgs.PushLast(defaultArgStr);
- n = n->next;
- }
- else
- defaultArgs.PushLast(0);
- }
- }
- asCString asCBuilder::GetCleanExpressionString(asCScriptNode *node, asCScriptCode *file)
- {
- asASSERT(node && node->nodeType == snExpression);
- asCString str;
- str.Assign(file->code + node->tokenPos, node->tokenLength);
- asCString cleanStr;
- for( asUINT n = 0; n < str.GetLength(); )
- {
- int len;
- asETokenClass tok = engine->ParseToken(str.AddressOf() + n, str.GetLength() - n, &len);
- if( tok != asTC_COMMENT && tok != asTC_WHITESPACE )
- {
- if( cleanStr.GetLength() ) cleanStr += " ";
- cleanStr.Concatenate(str.AddressOf() + n, len);
- }
- n += len;
- }
- return cleanStr;
- }
- int asCBuilder::RegisterScriptFunction(int funcId, asCScriptNode *node, asCScriptCode *file, asCObjectType *objType, bool isInterface, bool isGlobalFunction)
- {
- asCString name;
- asCDataType returnType;
- asCArray<asCDataType> parameterTypes;
- asCArray<asETypeModifiers> inOutFlags;
- asCArray<asCString *> defaultArgs;
- bool isConstMethod;
- bool isConstructor;
- bool isDestructor;
- bool isPrivate;
- GetParsedFunctionDetails(node, file, objType, name, returnType, parameterTypes, inOutFlags, defaultArgs, isConstMethod, isConstructor, isDestructor, isPrivate);
- // Check for name conflicts
- if( !isConstructor && !isDestructor )
- {
- if( objType )
- {
- CheckNameConflictMember(objType, name.AddressOf(), node, file, false);
- if( name == objType->name )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_METHOD_CANT_HAVE_NAME_OF_CLASS, r, c);
- }
- }
- else
- CheckNameConflict(name.AddressOf(), node, file);
- }
- else
- {
- // Verify that the name of the constructor/destructor is the same as the class
- if( name != objType->name )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_CONSTRUCTOR_NAME_ERROR, r, c);
- }
- if( isDestructor )
- name = "~" + name;
- }
- if( !isInterface )
- {
- sFunctionDescription *func = asNEW(sFunctionDescription);
- functions.PushLast(func);
- func->script = file;
- func->node = node;
- func->name = name;
- func->objType = objType;
- func->funcId = funcId;
- }
- // Destructors may not have any parameters
- if( isDestructor && parameterTypes.GetLength() > 0 )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_DESTRUCTOR_MAY_NOT_HAVE_PARM, r, c);
- }
- // TODO: Much of this can probably be reduced by using the IsSignatureEqual method
- // Check that the same function hasn't been registered already
- asCArray<int> funcs;
- GetFunctionDescriptions(name.AddressOf(), funcs);
- if( funcs.GetLength() )
- {
- for( asUINT n = 0; n < funcs.GetLength(); ++n )
- {
- asCScriptFunction *func = GetFunctionDescription(funcs[n]);
- if( parameterTypes.GetLength() == func->parameterTypes.GetLength() )
- {
- bool match = true;
- if( func->objectType != objType )
- {
- match = false;
- break;
- }
- for( asUINT p = 0; p < parameterTypes.GetLength(); ++p )
- {
- if( parameterTypes[p] != func->parameterTypes[p] )
- {
- match = false;
- break;
- }
- }
- if( match )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_FUNCTION_ALREADY_EXIST, r, c);
- break;
- }
- }
- }
- }
- // Register the function
- module->AddScriptFunction(file->idx, funcId, name.AddressOf(), returnType, parameterTypes.AddressOf(), inOutFlags.AddressOf(), defaultArgs.AddressOf(), (asUINT)parameterTypes.GetLength(), isInterface, objType, isConstMethod, isGlobalFunction, isPrivate);
- // Make sure the default args are declared correctly
- ValidateDefaultArgs(file, node, engine->scriptFunctions[funcId]);
- if( objType )
- {
- engine->scriptFunctions[funcId]->AddRef();
- if( isConstructor )
- {
- int factoryId = engine->GetNextScriptFunctionId();
- if( parameterTypes.GetLength() == 0 )
- {
- // Overload the default constructor
- engine->scriptFunctions[objType->beh.construct]->Release();
- objType->beh.construct = funcId;
- objType->beh.constructors[0] = funcId;
- // Register the default factory as well
- engine->scriptFunctions[objType->beh.factory]->Release();
- objType->beh.factory = factoryId;
- objType->beh.factories[0] = factoryId;
- }
- else
- {
- objType->beh.constructors.PushLast(funcId);
- // Register the factory as well
- objType->beh.factories.PushLast(factoryId);
- }
- // We must copy the default arg strings to avoid deleting the same object multiple times
- for( asUINT n = 0; n < defaultArgs.GetLength(); n++ )
- if( defaultArgs[n] )
- defaultArgs[n] = asNEW(asCString)(*defaultArgs[n]);
- asCDataType dt = asCDataType::CreateObjectHandle(objType, false);
- module->AddScriptFunction(file->idx, factoryId, name.AddressOf(), dt, parameterTypes.AddressOf(), inOutFlags.AddressOf(), defaultArgs.AddressOf(), (asUINT)parameterTypes.GetLength(), false);
- // Add a dummy function to the module so that it doesn't mix up the fund Ids
- functions.PushLast(0);
- // Compile the factory immediately
- asCCompiler compiler(engine);
- compiler.CompileFactory(this, file, engine->scriptFunctions[factoryId]);
- engine->scriptFunctions[factoryId]->AddRef();
- }
- else if( isDestructor )
- objType->beh.destruct = funcId;
- else
- objType->methods.PushLast(funcId);
- }
- // We need to delete the node already if this is an interface method
- if( isInterface && node )
- {
- node->Destroy(engine);
- }
- return 0;
- }
- int asCBuilder::RegisterImportedFunction(int importID, asCScriptNode *node, asCScriptCode *file)
- {
- // Find name
- asCScriptNode *f = node->firstChild;
- asCScriptNode *n = f->firstChild->next->next;
- // Check for name conflicts
- asCString name(&file->code[n->tokenPos], n->tokenLength);
- CheckNameConflict(name.AddressOf(), n, file);
- // Initialize a script function object for registration
- asCDataType returnType;
- returnType = CreateDataTypeFromNode(f->firstChild, file);
- returnType = ModifyDataTypeFromNode(returnType, f->firstChild->next, file, 0, 0);
- // Count the parameters
- int count = 0;
- asCScriptNode *c = n->next->firstChild;
- while( c )
- {
- count++;
- c = c->next->next;
- if( c && c->nodeType == snIdentifier )
- c = c->next;
- }
- asCArray<asCDataType> parameterTypes(count);
- asCArray<asETypeModifiers> inOutFlags(count);
- n = n->next->firstChild;
- while( n )
- {
- asETypeModifiers inOutFlag;
- asCDataType type = CreateDataTypeFromNode(n, file);
- type = ModifyDataTypeFromNode(type, n->next, file, &inOutFlag, 0);
- // Store the parameter type
- parameterTypes.PushLast(type);
- inOutFlags.PushLast(inOutFlag);
- if( type.GetTokenType() == ttVoid )
- {
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- asCString str;
- str.Format(TXT_PARAMETER_CANT_BE_s, type.Format().AddressOf());
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- break;
- }
- // Move to next parameter
- n = n->next->next;
- if( n && n->nodeType == snIdentifier )
- n = n->next;
- }
- // Check that the same function hasn't been registered already
- asCArray<int> funcs;
- GetFunctionDescriptions(name.AddressOf(), funcs);
- if( funcs.GetLength() )
- {
- for( asUINT n = 0; n < funcs.GetLength(); ++n )
- {
- asCScriptFunction *func = GetFunctionDescription(funcs[n]);
- if( parameterTypes.GetLength() == func->parameterTypes.GetLength() )
- {
- bool match = true;
- for( asUINT p = 0; p < parameterTypes.GetLength(); ++p )
- {
- if( parameterTypes[p] != func->parameterTypes[p] )
- {
- match = false;
- break;
- }
- }
- if( match )
- {
- int r, c;
- file->ConvertPosToRowCol(node->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_FUNCTION_ALREADY_EXIST, r, c);
- break;
- }
- }
- }
- }
- // Read the module name as well
- n = node->firstChild->next;
- asCString moduleName;
- moduleName.Assign(&file->code[n->tokenPos+1], n->tokenLength-2);
- node->Destroy(engine);
- // Register the function
- module->AddImportedFunction(importID, name.AddressOf(), returnType, parameterTypes.AddressOf(), inOutFlags.AddressOf(), (asUINT)parameterTypes.GetLength(), moduleName);
- return 0;
- }
- asCScriptFunction *asCBuilder::GetFunctionDescription(int id)
- {
- // TODO: import: This should be improved when the imported functions are removed
- // Get the description from the engine
- if( (id & 0xFFFF0000) == 0 )
- return engine->scriptFunctions[id];
- else
- return engine->importedFunctions[id & 0xFFFF]->importedFunctionSignature;
- }
- void asCBuilder::GetFunctionDescriptions(const char *name, asCArray<int> &funcs)
- {
- asUINT n;
- // TODO: optimize: Improve linear search
- for( n = 0; n < module->scriptFunctions.GetLength(); n++ )
- {
- if( module->scriptFunctions[n]->name == name &&
- module->scriptFunctions[n]->objectType == 0 )
- funcs.PushLast(module->scriptFunctions[n]->id);
- }
- // TODO: optimize: Improve linear search
- for( n = 0; n < module->bindInformations.GetLength(); n++ )
- {
- if( module->bindInformations[n]->importedFunctionSignature->name == name )
- funcs.PushLast(module->bindInformations[n]->importedFunctionSignature->id);
- }
- // TODO: optimize: Improve linear search
- // TODO: optimize: Use the registeredGlobalFunctions array instead
- for( n = 0; n < engine->scriptFunctions.GetLength(); n++ )
- {
- if( engine->scriptFunctions[n] &&
- engine->scriptFunctions[n]->funcType == asFUNC_SYSTEM &&
- engine->scriptFunctions[n]->objectType == 0 &&
- engine->scriptFunctions[n]->name == name )
- {
- // Find the config group for the global function
- asCConfigGroup *group = engine->FindConfigGroupForFunction(engine->scriptFunctions[n]->id);
- if( !group || group->HasModuleAccess(module->name.AddressOf()) )
- funcs.PushLast(engine->scriptFunctions[n]->id);
- }
- }
- }
- void asCBuilder::GetObjectMethodDescriptions(const char *name, asCObjectType *objectType, asCArray<int> &methods, bool objIsConst, const asCString &scope)
- {
- if( scope != "" )
- {
- // Find the base class with the specified scope
- while( objectType && objectType->name != scope )
- objectType = objectType->derivedFrom;
- // If the scope is not any of the base classes, then return no methods
- if( objectType == 0 )
- return;
- }
- // TODO: optimize: Improve linear search
- if( objIsConst )
- {
- // Only add const methods to the list
- for( asUINT n = 0; n < objectType->methods.GetLength(); n++ )
- {
- if( engine->scriptFunctions[objectType->methods[n]]->name == name &&
- engine->scriptFunctions[objectType->methods[n]]->isReadOnly )
- {
- // When the scope is defined the returned methods should be the true methods, not the virtual method stubs
- if( scope == "" )
- methods.PushLast(engine->scriptFunctions[objectType->methods[n]]->id);
- else
- {
- asCScriptFunction *virtFunc = engine->scriptFunctions[objectType->methods[n]];
- asCScriptFunction *realFunc = objectType->virtualFunctionTable[virtFunc->vfTableIdx];
- methods.PushLast(realFunc->id);
- }
- }
- }
- }
- else
- {
- // TODO: Prefer non-const over const
- for( asUINT n = 0; n < objectType->methods.GetLength(); n++ )
- {
- if( engine->scriptFunctions[objectType->methods[n]]->name == name )
- {
- // When the scope is defined the returned methods should be the true methods, not the virtual method stubs
- if( scope == "" )
- methods.PushLast(engine->scriptFunctions[objectType->methods[n]]->id);
- else
- {
- asCScriptFunction *virtFunc = engine->scriptFunctions[objectType->methods[n]];
- asCScriptFunction *realFunc = objectType->virtualFunctionTable[virtFunc->vfTableIdx];
- methods.PushLast(realFunc->id);
- }
- }
- }
- }
- }
- void asCBuilder::WriteInfo(const char *scriptname, const char *message, int r, int c, bool pre)
- {
- // Need to store the pre message in a structure
- if( pre )
- {
- preMessage.isSet = true;
- preMessage.c = c;
- preMessage.r = r;
- preMessage.message = message;
- }
- else
- {
- preMessage.isSet = false;
- engine->WriteMessage(scriptname, r, c, asMSGTYPE_INFORMATION, message);
- }
- }
- void asCBuilder::WriteError(const char *scriptname, const char *message, int r, int c)
- {
- numErrors++;
- // Need to pass the preMessage first
- if( preMessage.isSet )
- WriteInfo(scriptname, preMessage.message.AddressOf(), preMessage.r, preMessage.c, false);
- engine->WriteMessage(scriptname, r, c, asMSGTYPE_ERROR, message);
- }
- void asCBuilder::WriteWarning(const char *scriptname, const char *message, int r, int c)
- {
- numWarnings++;
- // Need to pass the preMessage first
- if( preMessage.isSet )
- WriteInfo(scriptname, preMessage.message.AddressOf(), preMessage.r, preMessage.c, false);
- engine->WriteMessage(scriptname, r, c, asMSGTYPE_WARNING, message);
- }
- asCDataType asCBuilder::CreateDataTypeFromNode(asCScriptNode *node, asCScriptCode *file, bool acceptHandleForScope, asCObjectType *templateType)
- {
- asASSERT(node->nodeType == snDataType);
- asCDataType dt;
- asCScriptNode *n = node->firstChild;
- bool isConst = false;
- bool isImplicitHandle = false;
- if( n->tokenType == ttConst )
- {
- isConst = true;
- n = n->next;
- }
- if( n->tokenType == ttIdentifier )
- {
- asCString str;
- str.Assign(&file->code[n->tokenPos], n->tokenLength);
- asCObjectType *ot = 0;
- // If this is for a template type, then we must first determine if the
- // identifier matches any of the template subtypes
- // TODO: template: it should be possible to have more than one subtypes
- if( templateType && (templateType->flags & asOBJ_TEMPLATE) && str == templateType->templateSubType.GetObjectType()->name )
- ot = templateType->templateSubType.GetObjectType();
- if( ot == 0 )
- ot = GetObjectType(str.AddressOf());
-
- if( ot )
- {
- if( ot->flags & asOBJ_IMPLICIT_HANDLE )
- isImplicitHandle = true;
- // Find the config group for the object type
- asCConfigGroup *group = engine->FindConfigGroupForObjectType(ot);
- if( !module || !group || group->HasModuleAccess(module->name.AddressOf()) )
- {
- if(asOBJ_TYPEDEF == (ot->flags & asOBJ_TYPEDEF))
- {
- // TODO: typedef: A typedef should be considered different from the original type (though with implicit conversions between the two)
- // Create primitive data type based on object flags
- dt = ot->templateSubType;
- dt.MakeReadOnly(isConst);
- }
- else
- {
- if( ot->flags & asOBJ_TEMPLATE )
- {
- n = n->next;
-
- // Check if the subtype is a type or the template's subtype
- // if it is the template's subtype then this is the actual template type,
- // orderwise it is a template instance.
- // Only do this for application registered interface, as the
- // scripts cannot implement templates.
- asCDataType subType = CreateDataTypeFromNode(n, file, false, module ? 0 : ot);
- if( subType.GetObjectType() != ot->templateSubType.GetObjectType() )
- {
- // This is a template instance
- // Need to find the correct object type
- asCObjectType *otInstance = engine->GetTemplateInstanceType(ot, subType);
- if( !otInstance )
- {
- asCString msg;
- msg.Format(TXT_CANNOT_INSTANCIATE_TEMPLATE_s_WITH_s, ot->name.AddressOf(), subType.Format().AddressOf());
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), msg.AddressOf(), r, c);
- }
- ot = otInstance;
- }
- }
- // Create object data type
- if( ot )
- dt = asCDataType::CreateObject(ot, isConst);
- else
- dt = asCDataType::CreatePrimitive(ttInt, isConst);
- }
- }
- else
- {
- asCString msg;
- msg.Format(TXT_TYPE_s_NOT_AVAILABLE_FOR_MODULE, (const char *)str.AddressOf());
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), msg.AddressOf(), r, c);
- dt.SetTokenType(ttInt);
- }
- }
- else if( ot == 0 )
- {
- // It can still be a function definition
- asCScriptFunction *funcdef = GetFuncDef(str.AddressOf());
- if( funcdef )
- {
- dt = asCDataType::CreateFuncDef(funcdef);
- }
- else if( funcdef == 0 )
- {
- asCString msg;
- msg.Format(TXT_IDENTIFIER_s_NOT_DATA_TYPE, (const char *)str.AddressOf());
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), msg.AddressOf(), r, c);
- dt = asCDataType::CreatePrimitive(ttInt, isConst);
- return dt;
- }
- }
- }
- else
- {
- // Create primitive data type
- dt = asCDataType::CreatePrimitive(n->tokenType, isConst);
- }
- // Determine array dimensions and object handles
- n = n->next;
- while( n && (n->tokenType == ttOpenBracket || n->tokenType == ttHandle) )
- {
- if( n->tokenType == ttOpenBracket )
- {
- // Make sure the sub type can be instanciated
- if( !dt.CanBeInstanciated() )
- {
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- asCString str;
- // TODO: Change to "Array sub type cannot be 'type'"
- str.Format(TXT_DATA_TYPE_CANT_BE_s, dt.Format().AddressOf());
- WriteError(file->name.AddressOf(), str.AddressOf(), r, c);
- }
- // Make the type an array (or multidimensional array)
- if( dt.MakeArray(engine) < 0 )
- {
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_NO_DEFAULT_ARRAY_TYPE, r, c);
- break;
- }
- }
- else
- {
- // Make the type a handle
- if( dt.MakeHandle(true, acceptHandleForScope) < 0 )
- {
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_OBJECT_HANDLE_NOT_SUPPORTED, r, c);
- break;
- }
- }
- n = n->next;
- }
- if( isImplicitHandle )
- {
- // Make the type a handle
- if( dt.MakeHandle(true, acceptHandleForScope) < 0 )
- {
- int r, c;
- file->ConvertPosToRowCol(n->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_OBJECT_HANDLE_NOT_SUPPORTED, r, c);
- }
- }
- return dt;
- }
- asCDataType asCBuilder::ModifyDataTypeFromNode(const asCDataType &type, asCScriptNode *node, asCScriptCode *file, asETypeModifiers *inOutFlags, bool *autoHandle)
- {
- asCDataType dt = type;
- if( inOutFlags ) *inOutFlags = asTM_NONE;
- // Is the argument sent by reference?
- asCScriptNode *n = node->firstChild;
- if( n && n->tokenType == ttAmp )
- {
- dt.MakeReference(true);
- n = n->next;
- if( n )
- {
- if( inOutFlags )
- {
- if( n->tokenType == ttIn )
- *inOutFlags = asTM_INREF;
- else if( n->tokenType == ttOut )
- *inOutFlags = asTM_OUTREF;
- else if( n->tokenType == ttInOut )
- *inOutFlags = asTM_INOUTREF;
- else
- asASSERT(false);
- }
- n = n->next;
- }
- else
- {
- if( inOutFlags )
- *inOutFlags = asTM_INOUTREF; // ttInOut
- }
- if( !engine->ep.allowUnsafeReferences &&
- inOutFlags && *inOutFlags == asTM_INOUTREF )
- {
- // Verify that the base type support &inout parameter types
- if( !dt.IsObject() || dt.IsObjectHandle() || !dt.GetObjectType()->beh.addref || !dt.GetObjectType()->beh.release )
- {
- int r, c;
- file->ConvertPosToRowCol(node->firstChild->tokenPos, &r, &c);
- WriteError(file->name.AddressOf(), TXT_ONLY_OBJECTS_MAY_USE_REF_INOUT, r, c);
- }
- }
- }
- if( autoHandle ) *autoHandle = false;
- if( n && n->tokenType == ttPlus )
- {
- if( autoHandle ) *autoHandle = true;
- }
- return dt;
- }
- asCObjectType *asCBuilder::GetObjectType(const char *type)
- {
- // TODO: Only search in config groups to which the module has access
- asCObjectType *ot = engine->GetObjectType(type);
- if( !ot && module )
- ot = module->GetObjectType(type);
- return ot;
- }
- asCScriptFunction *asCBuilder::GetFuncDef(const char *type)
- {
- for( asUINT n = 0; n < engine->registeredFuncDefs.GetLength(); n++ )
- {
- // TODO: Only return the definitions for the config groups that the module has access to
- if( engine->registeredFuncDefs[n]->name == type )
- {
- return engine->registeredFuncDefs[n];
- }
- }
- if( module )
- {
- for( asUINT n = 0; n < module->funcDefs.GetLength(); n++ )
- {
- if( module->funcDefs[n]->name == type )
- {
- return module->funcDefs[n];
- }
- }
- }
- return 0;
- }
- int asCBuilder::GetEnumValueFromObjectType(asCObjectType *objType, const char *name, asCDataType &outDt, asDWORD &outValue)
- {
- if( !objType || !(objType->flags & asOBJ_ENUM) )
- return 0;
- for( asUINT n = 0; n < objType->enumValues.GetLength(); ++n )
- {
- if( objType->enumValues[n]->name == name )
- {
- outDt = asCDataType::CreateObject(objType, true);
- outValue = objType->enumValues[n]->value;
- return 1;
- }
- }
- return 0;
- }
- int asCBuilder::GetEnumValue(const char *name, asCDataType &outDt, asDWORD &outValue)
- {
- bool found = false;
- // Search all available enum types
- asUINT t;
- for( t = 0; t < engine->objectTypes.GetLength(); t++ )
- {
- asCObjectType *ot = engine->objectTypes[t];
- if( GetEnumValueFromObjectType( ot, name, outDt, outValue ) )
- {
- if( !found )
- {
- found = true;
- }
- else
- {
- // Found more than one value in different enum types
- return 2;
- }
- }
- }
- for( t = 0; t < module->enumTypes.GetLength(); t++ )
- {
- asCObjectType *ot = module->enumTypes[t];
- if( GetEnumValueFromObjectType( ot, name, outDt, outValue ) )
- {
- if( !found )
- {
- found = true;
- }
- else
- {
- // Found more than one value in different enum types
- return 2;
- }
- }
- }
- if( found )
- return 1;
- // Didn't find any value
- return 0;
- }
- END_AS_NAMESPACE
|