gdscript_tokenizer.cpp 37 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528
  1. /*************************************************************************/
  2. /* gdscript_tokenizer.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "gdscript_tokenizer.h"
  31. #include "core/io/marshalls.h"
  32. #include "core/map.h"
  33. #include "core/print_string.h"
  34. #include "gdscript_functions.h"
  35. const char *GDScriptTokenizer::token_names[TK_MAX] = {
  36. "Empty",
  37. "Identifier",
  38. "Constant",
  39. "Self",
  40. "Built-In Type",
  41. "Built-In Func",
  42. "In",
  43. "'=='",
  44. "'!='",
  45. "'<'",
  46. "'<='",
  47. "'>'",
  48. "'>='",
  49. "'and'",
  50. "'or'",
  51. "'not'",
  52. "'+'",
  53. "'-'",
  54. "'*'",
  55. "'/'",
  56. "'%'",
  57. "'<<'",
  58. "'>>'",
  59. "'='",
  60. "'+='",
  61. "'-='",
  62. "'*='",
  63. "'/='",
  64. "'%='",
  65. "'<<='",
  66. "'>>='",
  67. "'&='",
  68. "'|='",
  69. "'^='",
  70. "'&'",
  71. "'|'",
  72. "'^'",
  73. "'~'",
  74. //"Plus Plus",
  75. //"Minus Minus",
  76. "if",
  77. "elif",
  78. "else",
  79. "for",
  80. "while",
  81. "break",
  82. "continue",
  83. "pass",
  84. "return",
  85. "match",
  86. "func",
  87. "class",
  88. "class_name",
  89. "extends",
  90. "is",
  91. "onready",
  92. "tool",
  93. "static",
  94. "export",
  95. "setget",
  96. "const",
  97. "var",
  98. "as",
  99. "void",
  100. "enum",
  101. "preload",
  102. "assert",
  103. "yield",
  104. "signal",
  105. "breakpoint",
  106. "rpc",
  107. "sync",
  108. "master",
  109. "puppet",
  110. "slave",
  111. "remotesync",
  112. "mastersync",
  113. "puppetsync",
  114. "'['",
  115. "']'",
  116. "'{'",
  117. "'}'",
  118. "'('",
  119. "')'",
  120. "','",
  121. "';'",
  122. "'.'",
  123. "'?'",
  124. "':'",
  125. "'$'",
  126. "'->'",
  127. "'\\n'",
  128. "PI",
  129. "TAU",
  130. "_",
  131. "INF",
  132. "NAN",
  133. "Error",
  134. "EOF",
  135. "Cursor"
  136. };
  137. struct _bit {
  138. Variant::Type type;
  139. const char *text;
  140. };
  141. //built in types
  142. static const _bit _type_list[] = {
  143. //types
  144. { Variant::BOOL, "bool" },
  145. { Variant::INT, "int" },
  146. { Variant::REAL, "float" },
  147. { Variant::STRING, "String" },
  148. { Variant::VECTOR2, "Vector2" },
  149. { Variant::RECT2, "Rect2" },
  150. { Variant::TRANSFORM2D, "Transform2D" },
  151. { Variant::VECTOR3, "Vector3" },
  152. { Variant::AABB, "AABB" },
  153. { Variant::PLANE, "Plane" },
  154. { Variant::QUAT, "Quat" },
  155. { Variant::BASIS, "Basis" },
  156. { Variant::TRANSFORM, "Transform" },
  157. { Variant::COLOR, "Color" },
  158. { Variant::_RID, "RID" },
  159. { Variant::OBJECT, "Object" },
  160. { Variant::NODE_PATH, "NodePath" },
  161. { Variant::DICTIONARY, "Dictionary" },
  162. { Variant::ARRAY, "Array" },
  163. { Variant::POOL_BYTE_ARRAY, "PoolByteArray" },
  164. { Variant::POOL_INT_ARRAY, "PoolIntArray" },
  165. { Variant::POOL_REAL_ARRAY, "PoolRealArray" },
  166. { Variant::POOL_STRING_ARRAY, "PoolStringArray" },
  167. { Variant::POOL_VECTOR2_ARRAY, "PoolVector2Array" },
  168. { Variant::POOL_VECTOR3_ARRAY, "PoolVector3Array" },
  169. { Variant::POOL_COLOR_ARRAY, "PoolColorArray" },
  170. { Variant::VARIANT_MAX, NULL },
  171. };
  172. struct _kws {
  173. GDScriptTokenizer::Token token;
  174. const char *text;
  175. };
  176. static const _kws _keyword_list[] = {
  177. //ops
  178. { GDScriptTokenizer::TK_OP_IN, "in" },
  179. { GDScriptTokenizer::TK_OP_NOT, "not" },
  180. { GDScriptTokenizer::TK_OP_OR, "or" },
  181. { GDScriptTokenizer::TK_OP_AND, "and" },
  182. //func
  183. { GDScriptTokenizer::TK_PR_FUNCTION, "func" },
  184. { GDScriptTokenizer::TK_PR_CLASS, "class" },
  185. { GDScriptTokenizer::TK_PR_CLASS_NAME, "class_name" },
  186. { GDScriptTokenizer::TK_PR_EXTENDS, "extends" },
  187. { GDScriptTokenizer::TK_PR_IS, "is" },
  188. { GDScriptTokenizer::TK_PR_ONREADY, "onready" },
  189. { GDScriptTokenizer::TK_PR_TOOL, "tool" },
  190. { GDScriptTokenizer::TK_PR_STATIC, "static" },
  191. { GDScriptTokenizer::TK_PR_EXPORT, "export" },
  192. { GDScriptTokenizer::TK_PR_SETGET, "setget" },
  193. { GDScriptTokenizer::TK_PR_VAR, "var" },
  194. { GDScriptTokenizer::TK_PR_AS, "as" },
  195. { GDScriptTokenizer::TK_PR_VOID, "void" },
  196. { GDScriptTokenizer::TK_PR_PRELOAD, "preload" },
  197. { GDScriptTokenizer::TK_PR_ASSERT, "assert" },
  198. { GDScriptTokenizer::TK_PR_YIELD, "yield" },
  199. { GDScriptTokenizer::TK_PR_SIGNAL, "signal" },
  200. { GDScriptTokenizer::TK_PR_BREAKPOINT, "breakpoint" },
  201. { GDScriptTokenizer::TK_PR_REMOTE, "remote" },
  202. { GDScriptTokenizer::TK_PR_MASTER, "master" },
  203. { GDScriptTokenizer::TK_PR_SLAVE, "slave" },
  204. { GDScriptTokenizer::TK_PR_PUPPET, "puppet" },
  205. { GDScriptTokenizer::TK_PR_SYNC, "sync" },
  206. { GDScriptTokenizer::TK_PR_REMOTESYNC, "remotesync" },
  207. { GDScriptTokenizer::TK_PR_MASTERSYNC, "mastersync" },
  208. { GDScriptTokenizer::TK_PR_PUPPETSYNC, "puppetsync" },
  209. { GDScriptTokenizer::TK_PR_CONST, "const" },
  210. { GDScriptTokenizer::TK_PR_ENUM, "enum" },
  211. //controlflow
  212. { GDScriptTokenizer::TK_CF_IF, "if" },
  213. { GDScriptTokenizer::TK_CF_ELIF, "elif" },
  214. { GDScriptTokenizer::TK_CF_ELSE, "else" },
  215. { GDScriptTokenizer::TK_CF_FOR, "for" },
  216. { GDScriptTokenizer::TK_CF_WHILE, "while" },
  217. { GDScriptTokenizer::TK_CF_BREAK, "break" },
  218. { GDScriptTokenizer::TK_CF_CONTINUE, "continue" },
  219. { GDScriptTokenizer::TK_CF_RETURN, "return" },
  220. { GDScriptTokenizer::TK_CF_MATCH, "match" },
  221. { GDScriptTokenizer::TK_CF_PASS, "pass" },
  222. { GDScriptTokenizer::TK_SELF, "self" },
  223. { GDScriptTokenizer::TK_CONST_PI, "PI" },
  224. { GDScriptTokenizer::TK_CONST_TAU, "TAU" },
  225. { GDScriptTokenizer::TK_WILDCARD, "_" },
  226. { GDScriptTokenizer::TK_CONST_INF, "INF" },
  227. { GDScriptTokenizer::TK_CONST_NAN, "NAN" },
  228. { GDScriptTokenizer::TK_ERROR, NULL }
  229. };
  230. const char *GDScriptTokenizer::get_token_name(Token p_token) {
  231. ERR_FAIL_INDEX_V(p_token, TK_MAX, "<error>");
  232. return token_names[p_token];
  233. }
  234. bool GDScriptTokenizer::is_token_literal(int p_offset, bool variable_safe) const {
  235. switch (get_token(p_offset)) {
  236. // Can always be literal:
  237. case TK_IDENTIFIER:
  238. case TK_PR_ONREADY:
  239. case TK_PR_TOOL:
  240. case TK_PR_STATIC:
  241. case TK_PR_EXPORT:
  242. case TK_PR_SETGET:
  243. case TK_PR_SIGNAL:
  244. case TK_PR_REMOTE:
  245. case TK_PR_MASTER:
  246. case TK_PR_PUPPET:
  247. case TK_PR_SYNC:
  248. case TK_PR_REMOTESYNC:
  249. case TK_PR_MASTERSYNC:
  250. case TK_PR_PUPPETSYNC:
  251. return true;
  252. // Literal for non-variables only:
  253. case TK_BUILT_IN_TYPE:
  254. case TK_BUILT_IN_FUNC:
  255. case TK_OP_IN:
  256. //case TK_OP_NOT:
  257. //case TK_OP_OR:
  258. //case TK_OP_AND:
  259. case TK_PR_CLASS:
  260. case TK_PR_CONST:
  261. case TK_PR_ENUM:
  262. case TK_PR_PRELOAD:
  263. case TK_PR_FUNCTION:
  264. case TK_PR_EXTENDS:
  265. case TK_PR_ASSERT:
  266. case TK_PR_YIELD:
  267. case TK_PR_VAR:
  268. case TK_CF_IF:
  269. case TK_CF_ELIF:
  270. case TK_CF_ELSE:
  271. case TK_CF_FOR:
  272. case TK_CF_WHILE:
  273. case TK_CF_BREAK:
  274. case TK_CF_CONTINUE:
  275. case TK_CF_RETURN:
  276. case TK_CF_MATCH:
  277. case TK_CF_PASS:
  278. case TK_SELF:
  279. case TK_CONST_PI:
  280. case TK_CONST_TAU:
  281. case TK_WILDCARD:
  282. case TK_CONST_INF:
  283. case TK_CONST_NAN:
  284. case TK_ERROR:
  285. return !variable_safe;
  286. case TK_CONSTANT: {
  287. switch (get_token_constant(p_offset).get_type()) {
  288. case Variant::NIL:
  289. case Variant::BOOL:
  290. return true;
  291. default:
  292. return false;
  293. }
  294. }
  295. default:
  296. return false;
  297. }
  298. }
  299. StringName GDScriptTokenizer::get_token_literal(int p_offset) const {
  300. Token token = get_token(p_offset);
  301. switch (token) {
  302. case TK_IDENTIFIER:
  303. return get_token_identifier(p_offset);
  304. case TK_BUILT_IN_TYPE: {
  305. Variant::Type type = get_token_type(p_offset);
  306. int idx = 0;
  307. while (_type_list[idx].text) {
  308. if (type == _type_list[idx].type) {
  309. return _type_list[idx].text;
  310. }
  311. idx++;
  312. }
  313. } break; // Shouldn't get here, stuff happens
  314. case TK_BUILT_IN_FUNC:
  315. return GDScriptFunctions::get_func_name(get_token_built_in_func(p_offset));
  316. case TK_CONSTANT: {
  317. const Variant value = get_token_constant(p_offset);
  318. switch (value.get_type()) {
  319. case Variant::NIL:
  320. return "null";
  321. case Variant::BOOL:
  322. return value ? "true" : "false";
  323. default: {
  324. }
  325. }
  326. }
  327. case TK_OP_AND:
  328. case TK_OP_OR:
  329. break; // Don't get into default, since they can be non-literal
  330. default: {
  331. int idx = 0;
  332. while (_keyword_list[idx].text) {
  333. if (token == _keyword_list[idx].token) {
  334. return _keyword_list[idx].text;
  335. }
  336. idx++;
  337. }
  338. }
  339. }
  340. ERR_FAIL_V_MSG("", "Failed to get token literal.");
  341. }
  342. static bool _is_text_char(CharType c) {
  343. return (c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z') || (c >= '0' && c <= '9') || c == '_';
  344. }
  345. static bool _is_number(CharType c) {
  346. return (c >= '0' && c <= '9');
  347. }
  348. static bool _is_hex(CharType c) {
  349. return (c >= '0' && c <= '9') || (c >= 'a' && c <= 'f') || (c >= 'A' && c <= 'F');
  350. }
  351. static bool _is_bin(CharType c) {
  352. return (c == '0' || c == '1');
  353. }
  354. void GDScriptTokenizerText::_make_token(Token p_type) {
  355. TokenData &tk = tk_rb[tk_rb_pos];
  356. tk.type = p_type;
  357. tk.line = line;
  358. tk.col = column;
  359. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  360. }
  361. void GDScriptTokenizerText::_make_identifier(const StringName &p_identifier) {
  362. TokenData &tk = tk_rb[tk_rb_pos];
  363. tk.type = TK_IDENTIFIER;
  364. tk.identifier = p_identifier;
  365. tk.line = line;
  366. tk.col = column;
  367. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  368. }
  369. void GDScriptTokenizerText::_make_built_in_func(GDScriptFunctions::Function p_func) {
  370. TokenData &tk = tk_rb[tk_rb_pos];
  371. tk.type = TK_BUILT_IN_FUNC;
  372. tk.func = p_func;
  373. tk.line = line;
  374. tk.col = column;
  375. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  376. }
  377. void GDScriptTokenizerText::_make_constant(const Variant &p_constant) {
  378. TokenData &tk = tk_rb[tk_rb_pos];
  379. tk.type = TK_CONSTANT;
  380. tk.constant = p_constant;
  381. tk.line = line;
  382. tk.col = column;
  383. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  384. }
  385. void GDScriptTokenizerText::_make_type(const Variant::Type &p_type) {
  386. TokenData &tk = tk_rb[tk_rb_pos];
  387. tk.type = TK_BUILT_IN_TYPE;
  388. tk.vtype = p_type;
  389. tk.line = line;
  390. tk.col = column;
  391. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  392. }
  393. void GDScriptTokenizerText::_make_error(const String &p_error) {
  394. error_flag = true;
  395. last_error = p_error;
  396. TokenData &tk = tk_rb[tk_rb_pos];
  397. tk.type = TK_ERROR;
  398. tk.constant = p_error;
  399. tk.line = line;
  400. tk.col = column;
  401. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  402. }
  403. void GDScriptTokenizerText::_make_newline(int p_indentation, int p_tabs) {
  404. TokenData &tk = tk_rb[tk_rb_pos];
  405. tk.type = TK_NEWLINE;
  406. tk.constant = Vector2(p_indentation, p_tabs);
  407. tk.line = line;
  408. tk.col = column;
  409. tk_rb_pos = (tk_rb_pos + 1) % TK_RB_SIZE;
  410. }
  411. void GDScriptTokenizerText::_advance() {
  412. if (error_flag) {
  413. //parser broke
  414. _make_error(last_error);
  415. return;
  416. }
  417. if (code_pos >= len) {
  418. _make_token(TK_EOF);
  419. return;
  420. }
  421. #define GETCHAR(m_ofs) ((m_ofs + code_pos) >= len ? 0 : _code[m_ofs + code_pos])
  422. #define INCPOS(m_amount) \
  423. { \
  424. code_pos += m_amount; \
  425. column += m_amount; \
  426. }
  427. while (true) {
  428. bool is_node_path = false;
  429. StringMode string_mode = STRING_DOUBLE_QUOTE;
  430. switch (GETCHAR(0)) {
  431. case 0:
  432. _make_token(TK_EOF);
  433. break;
  434. case '\\':
  435. INCPOS(1);
  436. if (GETCHAR(0) == '\r') {
  437. INCPOS(1);
  438. }
  439. if (GETCHAR(0) != '\n') {
  440. _make_error("Expected newline after '\\'.");
  441. return;
  442. }
  443. INCPOS(1);
  444. line++;
  445. while (GETCHAR(0) == ' ' || GETCHAR(0) == '\t') {
  446. INCPOS(1);
  447. }
  448. continue;
  449. case '\t':
  450. case '\r':
  451. case ' ':
  452. INCPOS(1);
  453. continue;
  454. case '#': { // line comment skip
  455. #ifdef DEBUG_ENABLED
  456. String comment;
  457. #endif // DEBUG_ENABLED
  458. while (GETCHAR(0) != '\n') {
  459. #ifdef DEBUG_ENABLED
  460. comment += GETCHAR(0);
  461. #endif // DEBUG_ENABLED
  462. code_pos++;
  463. if (GETCHAR(0) == 0) { //end of file
  464. //_make_error("Unterminated Comment");
  465. _make_token(TK_EOF);
  466. return;
  467. }
  468. }
  469. #ifdef DEBUG_ENABLED
  470. String comment_content = comment.trim_prefix("#").trim_prefix(" ");
  471. if (comment_content.begins_with("warning-ignore:")) {
  472. String code = comment_content.get_slice(":", 1);
  473. warning_skips.push_back(Pair<int, String>(line, code.strip_edges().to_lower()));
  474. } else if (comment_content.begins_with("warning-ignore-all:")) {
  475. String code = comment_content.get_slice(":", 1);
  476. warning_global_skips.insert(code.strip_edges().to_lower());
  477. } else if (comment_content.strip_edges() == "warnings-disable") {
  478. ignore_warnings = true;
  479. }
  480. #endif // DEBUG_ENABLED
  481. FALLTHROUGH;
  482. }
  483. case '\n': {
  484. line++;
  485. INCPOS(1);
  486. bool used_spaces = false;
  487. int tabs = 0;
  488. column = 1;
  489. int i = 0;
  490. while (true) {
  491. if (GETCHAR(i) == ' ') {
  492. i++;
  493. used_spaces = true;
  494. } else if (GETCHAR(i) == '\t') {
  495. if (used_spaces) {
  496. _make_error("Spaces used before tabs on a line");
  497. return;
  498. }
  499. i++;
  500. tabs++;
  501. } else {
  502. break; // not indentation anymore
  503. }
  504. }
  505. _make_newline(i, tabs);
  506. return;
  507. }
  508. case '/': {
  509. switch (GETCHAR(1)) {
  510. case '=': { // diveq
  511. _make_token(TK_OP_ASSIGN_DIV);
  512. INCPOS(1);
  513. } break;
  514. default:
  515. _make_token(TK_OP_DIV);
  516. }
  517. } break;
  518. case '=': {
  519. if (GETCHAR(1) == '=') {
  520. _make_token(TK_OP_EQUAL);
  521. INCPOS(1);
  522. } else
  523. _make_token(TK_OP_ASSIGN);
  524. } break;
  525. case '<': {
  526. if (GETCHAR(1) == '=') {
  527. _make_token(TK_OP_LESS_EQUAL);
  528. INCPOS(1);
  529. } else if (GETCHAR(1) == '<') {
  530. if (GETCHAR(2) == '=') {
  531. _make_token(TK_OP_ASSIGN_SHIFT_LEFT);
  532. INCPOS(1);
  533. } else {
  534. _make_token(TK_OP_SHIFT_LEFT);
  535. }
  536. INCPOS(1);
  537. } else
  538. _make_token(TK_OP_LESS);
  539. } break;
  540. case '>': {
  541. if (GETCHAR(1) == '=') {
  542. _make_token(TK_OP_GREATER_EQUAL);
  543. INCPOS(1);
  544. } else if (GETCHAR(1) == '>') {
  545. if (GETCHAR(2) == '=') {
  546. _make_token(TK_OP_ASSIGN_SHIFT_RIGHT);
  547. INCPOS(1);
  548. } else {
  549. _make_token(TK_OP_SHIFT_RIGHT);
  550. }
  551. INCPOS(1);
  552. } else {
  553. _make_token(TK_OP_GREATER);
  554. }
  555. } break;
  556. case '!': {
  557. if (GETCHAR(1) == '=') {
  558. _make_token(TK_OP_NOT_EQUAL);
  559. INCPOS(1);
  560. } else {
  561. _make_token(TK_OP_NOT);
  562. }
  563. } break;
  564. //case '"' //string - no strings in shader
  565. //case '\'' //string - no strings in shader
  566. case '{':
  567. _make_token(TK_CURLY_BRACKET_OPEN);
  568. break;
  569. case '}':
  570. _make_token(TK_CURLY_BRACKET_CLOSE);
  571. break;
  572. case '[':
  573. _make_token(TK_BRACKET_OPEN);
  574. break;
  575. case ']':
  576. _make_token(TK_BRACKET_CLOSE);
  577. break;
  578. case '(':
  579. _make_token(TK_PARENTHESIS_OPEN);
  580. break;
  581. case ')':
  582. _make_token(TK_PARENTHESIS_CLOSE);
  583. break;
  584. case ',':
  585. _make_token(TK_COMMA);
  586. break;
  587. case ';':
  588. _make_token(TK_SEMICOLON);
  589. break;
  590. case '?':
  591. _make_token(TK_QUESTION_MARK);
  592. break;
  593. case ':':
  594. _make_token(TK_COLON); //for methods maybe but now useless.
  595. break;
  596. case '$':
  597. _make_token(TK_DOLLAR); //for the get_node() shortener
  598. break;
  599. case '^': {
  600. if (GETCHAR(1) == '=') {
  601. _make_token(TK_OP_ASSIGN_BIT_XOR);
  602. INCPOS(1);
  603. } else {
  604. _make_token(TK_OP_BIT_XOR);
  605. }
  606. } break;
  607. case '~':
  608. _make_token(TK_OP_BIT_INVERT);
  609. break;
  610. case '&': {
  611. if (GETCHAR(1) == '&') {
  612. _make_token(TK_OP_AND);
  613. INCPOS(1);
  614. } else if (GETCHAR(1) == '=') {
  615. _make_token(TK_OP_ASSIGN_BIT_AND);
  616. INCPOS(1);
  617. } else {
  618. _make_token(TK_OP_BIT_AND);
  619. }
  620. } break;
  621. case '|': {
  622. if (GETCHAR(1) == '|') {
  623. _make_token(TK_OP_OR);
  624. INCPOS(1);
  625. } else if (GETCHAR(1) == '=') {
  626. _make_token(TK_OP_ASSIGN_BIT_OR);
  627. INCPOS(1);
  628. } else {
  629. _make_token(TK_OP_BIT_OR);
  630. }
  631. } break;
  632. case '*': {
  633. if (GETCHAR(1) == '=') {
  634. _make_token(TK_OP_ASSIGN_MUL);
  635. INCPOS(1);
  636. } else {
  637. _make_token(TK_OP_MUL);
  638. }
  639. } break;
  640. case '+': {
  641. if (GETCHAR(1) == '=') {
  642. _make_token(TK_OP_ASSIGN_ADD);
  643. INCPOS(1);
  644. /*
  645. } else if (GETCHAR(1)=='+') {
  646. _make_token(TK_OP_PLUS_PLUS);
  647. INCPOS(1);
  648. */
  649. } else {
  650. _make_token(TK_OP_ADD);
  651. }
  652. } break;
  653. case '-': {
  654. if (GETCHAR(1) == '=') {
  655. _make_token(TK_OP_ASSIGN_SUB);
  656. INCPOS(1);
  657. } else if (GETCHAR(1) == '>') {
  658. _make_token(TK_FORWARD_ARROW);
  659. INCPOS(1);
  660. } else {
  661. _make_token(TK_OP_SUB);
  662. }
  663. } break;
  664. case '%': {
  665. if (GETCHAR(1) == '=') {
  666. _make_token(TK_OP_ASSIGN_MOD);
  667. INCPOS(1);
  668. } else {
  669. _make_token(TK_OP_MOD);
  670. }
  671. } break;
  672. case '@':
  673. if (CharType(GETCHAR(1)) != '"' && CharType(GETCHAR(1)) != '\'') {
  674. _make_error("Unexpected '@'");
  675. return;
  676. }
  677. INCPOS(1);
  678. is_node_path = true;
  679. FALLTHROUGH;
  680. case '\'':
  681. case '"': {
  682. if (GETCHAR(0) == '\'')
  683. string_mode = STRING_SINGLE_QUOTE;
  684. int i = 1;
  685. if (string_mode == STRING_DOUBLE_QUOTE && GETCHAR(i) == '"' && GETCHAR(i + 1) == '"') {
  686. i += 2;
  687. string_mode = STRING_MULTILINE;
  688. }
  689. String str;
  690. while (true) {
  691. if (CharType(GETCHAR(i)) == 0) {
  692. _make_error("Unterminated String");
  693. return;
  694. } else if (string_mode == STRING_DOUBLE_QUOTE && CharType(GETCHAR(i)) == '"') {
  695. break;
  696. } else if (string_mode == STRING_SINGLE_QUOTE && CharType(GETCHAR(i)) == '\'') {
  697. break;
  698. } else if (string_mode == STRING_MULTILINE && CharType(GETCHAR(i)) == '\"' && CharType(GETCHAR(i + 1)) == '\"' && CharType(GETCHAR(i + 2)) == '\"') {
  699. i += 2;
  700. break;
  701. } else if (string_mode != STRING_MULTILINE && CharType(GETCHAR(i)) == '\n') {
  702. _make_error("Unexpected EOL at String.");
  703. return;
  704. } else if (CharType(GETCHAR(i)) == 0xFFFF) {
  705. //string ends here, next will be TK
  706. i--;
  707. break;
  708. } else if (CharType(GETCHAR(i)) == '\\') {
  709. //escaped characters...
  710. i++;
  711. CharType next = GETCHAR(i);
  712. if (next == 0) {
  713. _make_error("Unterminated String");
  714. return;
  715. }
  716. CharType res = 0;
  717. switch (next) {
  718. case 'a': res = 7; break;
  719. case 'b': res = 8; break;
  720. case 't': res = 9; break;
  721. case 'n': res = 10; break;
  722. case 'v': res = 11; break;
  723. case 'f': res = 12; break;
  724. case 'r': res = 13; break;
  725. case '\'': res = '\''; break;
  726. case '\"': res = '\"'; break;
  727. case '\\': res = '\\'; break;
  728. case '/':
  729. res = '/';
  730. break; //wtf
  731. case 'u': {
  732. //hexnumbarh - oct is deprecated
  733. i += 1;
  734. for (int j = 0; j < 4; j++) {
  735. CharType c = GETCHAR(i + j);
  736. if (c == 0) {
  737. _make_error("Unterminated String");
  738. return;
  739. }
  740. CharType v = 0;
  741. if (c >= '0' && c <= '9') {
  742. v = c - '0';
  743. } else if (c >= 'a' && c <= 'f') {
  744. v = c - 'a';
  745. v += 10;
  746. } else if (c >= 'A' && c <= 'F') {
  747. v = c - 'A';
  748. v += 10;
  749. } else {
  750. _make_error("Malformed hex constant in string");
  751. return;
  752. }
  753. res <<= 4;
  754. res |= v;
  755. }
  756. i += 3;
  757. } break;
  758. default: {
  759. _make_error("Invalid escape sequence");
  760. return;
  761. } break;
  762. }
  763. str += res;
  764. } else {
  765. if (CharType(GETCHAR(i)) == '\n') {
  766. line++;
  767. column = 1;
  768. }
  769. str += CharType(GETCHAR(i));
  770. }
  771. i++;
  772. }
  773. INCPOS(i);
  774. if (is_node_path) {
  775. _make_constant(NodePath(str));
  776. } else {
  777. _make_constant(str);
  778. }
  779. } break;
  780. case 0xFFFF: {
  781. _make_token(TK_CURSOR);
  782. } break;
  783. default: {
  784. if (_is_number(GETCHAR(0)) || (GETCHAR(0) == '.' && _is_number(GETCHAR(1)))) {
  785. // parse number
  786. bool period_found = false;
  787. bool exponent_found = false;
  788. bool hexa_found = false;
  789. bool bin_found = false;
  790. bool sign_found = false;
  791. String str;
  792. int i = 0;
  793. while (true) {
  794. if (GETCHAR(i) == '.') {
  795. if (period_found || exponent_found) {
  796. _make_error("Invalid numeric constant at '.'");
  797. return;
  798. } else if (bin_found) {
  799. _make_error("Invalid binary constant at '.'");
  800. return;
  801. } else if (hexa_found) {
  802. _make_error("Invalid hexadecimal constant at '.'");
  803. return;
  804. }
  805. period_found = true;
  806. } else if (GETCHAR(i) == 'x') {
  807. if (hexa_found || bin_found || str.length() != 1 || !((i == 1 && str[0] == '0') || (i == 2 && str[1] == '0' && str[0] == '-'))) {
  808. _make_error("Invalid numeric constant at 'x'");
  809. return;
  810. }
  811. hexa_found = true;
  812. } else if (GETCHAR(i) == 'b') {
  813. if (hexa_found || bin_found || str.length() != 1 || !((i == 1 && str[0] == '0') || (i == 2 && str[1] == '0' && str[0] == '-'))) {
  814. _make_error("Invalid numeric constant at 'b'");
  815. return;
  816. }
  817. bin_found = true;
  818. } else if (!hexa_found && GETCHAR(i) == 'e') {
  819. if (exponent_found || bin_found) {
  820. _make_error("Invalid numeric constant at 'e'");
  821. return;
  822. }
  823. exponent_found = true;
  824. } else if (_is_number(GETCHAR(i))) {
  825. //all ok
  826. } else if (hexa_found && _is_hex(GETCHAR(i))) {
  827. } else if (bin_found && _is_bin(GETCHAR(i))) {
  828. } else if ((GETCHAR(i) == '-' || GETCHAR(i) == '+') && exponent_found) {
  829. if (sign_found) {
  830. _make_error("Invalid numeric constant at '-'");
  831. return;
  832. }
  833. sign_found = true;
  834. } else if (GETCHAR(i) == '_') {
  835. i++;
  836. continue; // Included for readability, shouldn't be a part of the string
  837. } else
  838. break;
  839. str += CharType(GETCHAR(i));
  840. i++;
  841. }
  842. if (!(_is_number(str[str.length() - 1]) || (hexa_found && _is_hex(str[str.length() - 1])))) {
  843. _make_error("Invalid numeric constant: " + str);
  844. return;
  845. }
  846. INCPOS(i);
  847. if (hexa_found) {
  848. int64_t val = str.hex_to_int64();
  849. _make_constant(val);
  850. } else if (bin_found) {
  851. int64_t val = str.bin_to_int64();
  852. _make_constant(val);
  853. } else if (period_found || exponent_found) {
  854. double val = str.to_double();
  855. _make_constant(val);
  856. } else {
  857. int64_t val = str.to_int64();
  858. _make_constant(val);
  859. }
  860. return;
  861. }
  862. if (GETCHAR(0) == '.') {
  863. //parse period
  864. _make_token(TK_PERIOD);
  865. break;
  866. }
  867. if (_is_text_char(GETCHAR(0))) {
  868. // parse identifier
  869. String str;
  870. str += CharType(GETCHAR(0));
  871. int i = 1;
  872. while (_is_text_char(GETCHAR(i))) {
  873. str += CharType(GETCHAR(i));
  874. i++;
  875. }
  876. bool identifier = false;
  877. if (str == "null") {
  878. _make_constant(Variant());
  879. } else if (str == "true") {
  880. _make_constant(true);
  881. } else if (str == "false") {
  882. _make_constant(false);
  883. } else {
  884. bool found = false;
  885. {
  886. int idx = 0;
  887. while (_type_list[idx].text) {
  888. if (str == _type_list[idx].text) {
  889. _make_type(_type_list[idx].type);
  890. found = true;
  891. break;
  892. }
  893. idx++;
  894. }
  895. }
  896. if (!found) {
  897. //built in func?
  898. for (int j = 0; j < GDScriptFunctions::FUNC_MAX; j++) {
  899. if (str == GDScriptFunctions::get_func_name(GDScriptFunctions::Function(j))) {
  900. _make_built_in_func(GDScriptFunctions::Function(j));
  901. found = true;
  902. break;
  903. }
  904. }
  905. }
  906. if (!found) {
  907. //keyword
  908. int idx = 0;
  909. found = false;
  910. while (_keyword_list[idx].text) {
  911. if (str == _keyword_list[idx].text) {
  912. _make_token(_keyword_list[idx].token);
  913. found = true;
  914. break;
  915. }
  916. idx++;
  917. }
  918. }
  919. if (!found)
  920. identifier = true;
  921. }
  922. if (identifier) {
  923. _make_identifier(str);
  924. }
  925. INCPOS(str.length());
  926. return;
  927. }
  928. _make_error("Unknown character");
  929. return;
  930. } break;
  931. }
  932. INCPOS(1);
  933. break;
  934. }
  935. }
  936. void GDScriptTokenizerText::set_code(const String &p_code) {
  937. code = p_code;
  938. len = p_code.length();
  939. if (len) {
  940. _code = &code[0];
  941. } else {
  942. _code = NULL;
  943. }
  944. code_pos = 0;
  945. line = 1; //it is stand-ar-ized that lines begin in 1 in code..
  946. column = 1; //the same holds for columns
  947. tk_rb_pos = 0;
  948. error_flag = false;
  949. #ifdef DEBUG_ENABLED
  950. ignore_warnings = false;
  951. #endif // DEBUG_ENABLED
  952. last_error = "";
  953. for (int i = 0; i < MAX_LOOKAHEAD + 1; i++)
  954. _advance();
  955. }
  956. GDScriptTokenizerText::Token GDScriptTokenizerText::get_token(int p_offset) const {
  957. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, TK_ERROR);
  958. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, TK_ERROR);
  959. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  960. return tk_rb[ofs].type;
  961. }
  962. int GDScriptTokenizerText::get_token_line(int p_offset) const {
  963. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, -1);
  964. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, -1);
  965. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  966. return tk_rb[ofs].line;
  967. }
  968. int GDScriptTokenizerText::get_token_column(int p_offset) const {
  969. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, -1);
  970. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, -1);
  971. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  972. return tk_rb[ofs].col;
  973. }
  974. const Variant &GDScriptTokenizerText::get_token_constant(int p_offset) const {
  975. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, tk_rb[0].constant);
  976. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, tk_rb[0].constant);
  977. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  978. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_CONSTANT, tk_rb[0].constant);
  979. return tk_rb[ofs].constant;
  980. }
  981. StringName GDScriptTokenizerText::get_token_identifier(int p_offset) const {
  982. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, StringName());
  983. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, StringName());
  984. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  985. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_IDENTIFIER, StringName());
  986. return tk_rb[ofs].identifier;
  987. }
  988. GDScriptFunctions::Function GDScriptTokenizerText::get_token_built_in_func(int p_offset) const {
  989. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, GDScriptFunctions::FUNC_MAX);
  990. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, GDScriptFunctions::FUNC_MAX);
  991. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  992. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_BUILT_IN_FUNC, GDScriptFunctions::FUNC_MAX);
  993. return tk_rb[ofs].func;
  994. }
  995. Variant::Type GDScriptTokenizerText::get_token_type(int p_offset) const {
  996. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, Variant::NIL);
  997. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, Variant::NIL);
  998. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  999. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_BUILT_IN_TYPE, Variant::NIL);
  1000. return tk_rb[ofs].vtype;
  1001. }
  1002. int GDScriptTokenizerText::get_token_line_indent(int p_offset) const {
  1003. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, 0);
  1004. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, 0);
  1005. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  1006. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_NEWLINE, 0);
  1007. return tk_rb[ofs].constant.operator Vector2().x;
  1008. }
  1009. int GDScriptTokenizerText::get_token_line_tab_indent(int p_offset) const {
  1010. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, 0);
  1011. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, 0);
  1012. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  1013. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_NEWLINE, 0);
  1014. return tk_rb[ofs].constant.operator Vector2().y;
  1015. }
  1016. String GDScriptTokenizerText::get_token_error(int p_offset) const {
  1017. ERR_FAIL_COND_V(p_offset <= -MAX_LOOKAHEAD, String());
  1018. ERR_FAIL_COND_V(p_offset >= MAX_LOOKAHEAD, String());
  1019. int ofs = (TK_RB_SIZE + tk_rb_pos + p_offset - MAX_LOOKAHEAD - 1) % TK_RB_SIZE;
  1020. ERR_FAIL_COND_V(tk_rb[ofs].type != TK_ERROR, String());
  1021. return tk_rb[ofs].constant;
  1022. }
  1023. void GDScriptTokenizerText::advance(int p_amount) {
  1024. ERR_FAIL_COND(p_amount <= 0);
  1025. for (int i = 0; i < p_amount; i++)
  1026. _advance();
  1027. }
  1028. //////////////////////////////////////////////////////////////////////////////////////////////////////
  1029. #define BYTECODE_VERSION 13
  1030. Error GDScriptTokenizerBuffer::set_code_buffer(const Vector<uint8_t> &p_buffer) {
  1031. const uint8_t *buf = p_buffer.ptr();
  1032. int total_len = p_buffer.size();
  1033. ERR_FAIL_COND_V(p_buffer.size() < 24 || p_buffer[0] != 'G' || p_buffer[1] != 'D' || p_buffer[2] != 'S' || p_buffer[3] != 'C', ERR_INVALID_DATA);
  1034. int version = decode_uint32(&buf[4]);
  1035. ERR_FAIL_COND_V_MSG(version > BYTECODE_VERSION, ERR_INVALID_DATA, "Bytecode is too recent! Please use a newer engine version.");
  1036. int identifier_count = decode_uint32(&buf[8]);
  1037. int constant_count = decode_uint32(&buf[12]);
  1038. int line_count = decode_uint32(&buf[16]);
  1039. int token_count = decode_uint32(&buf[20]);
  1040. const uint8_t *b = &buf[24];
  1041. total_len -= 24;
  1042. identifiers.resize(identifier_count);
  1043. for (int i = 0; i < identifier_count; i++) {
  1044. int len = decode_uint32(b);
  1045. ERR_FAIL_COND_V(len > total_len, ERR_INVALID_DATA);
  1046. b += 4;
  1047. Vector<uint8_t> cs;
  1048. cs.resize(len);
  1049. for (int j = 0; j < len; j++) {
  1050. cs.write[j] = b[j] ^ 0xb6;
  1051. }
  1052. cs.write[cs.size() - 1] = 0;
  1053. String s;
  1054. s.parse_utf8((const char *)cs.ptr());
  1055. b += len;
  1056. total_len -= len + 4;
  1057. identifiers.write[i] = s;
  1058. }
  1059. constants.resize(constant_count);
  1060. for (int i = 0; i < constant_count; i++) {
  1061. Variant v;
  1062. int len;
  1063. // An object cannot be constant, never decode objects
  1064. Error err = decode_variant(v, b, total_len, &len, false);
  1065. if (err)
  1066. return err;
  1067. b += len;
  1068. total_len -= len;
  1069. constants.write[i] = v;
  1070. }
  1071. ERR_FAIL_COND_V(line_count * 8 > total_len, ERR_INVALID_DATA);
  1072. for (int i = 0; i < line_count; i++) {
  1073. uint32_t token = decode_uint32(b);
  1074. b += 4;
  1075. uint32_t linecol = decode_uint32(b);
  1076. b += 4;
  1077. lines.insert(token, linecol);
  1078. total_len -= 8;
  1079. }
  1080. tokens.resize(token_count);
  1081. for (int i = 0; i < token_count; i++) {
  1082. ERR_FAIL_COND_V(total_len < 1, ERR_INVALID_DATA);
  1083. if ((*b) & TOKEN_BYTE_MASK) { //little endian always
  1084. ERR_FAIL_COND_V(total_len < 4, ERR_INVALID_DATA);
  1085. tokens.write[i] = decode_uint32(b) & ~TOKEN_BYTE_MASK;
  1086. b += 4;
  1087. } else {
  1088. tokens.write[i] = *b;
  1089. b += 1;
  1090. total_len--;
  1091. }
  1092. }
  1093. token = 0;
  1094. return OK;
  1095. }
  1096. Vector<uint8_t> GDScriptTokenizerBuffer::parse_code_string(const String &p_code) {
  1097. Vector<uint8_t> buf;
  1098. Map<StringName, int> identifier_map;
  1099. HashMap<Variant, int, VariantHasher, VariantComparator> constant_map;
  1100. Map<uint32_t, int> line_map;
  1101. Vector<uint32_t> token_array;
  1102. GDScriptTokenizerText tt;
  1103. tt.set_code(p_code);
  1104. int line = -1;
  1105. while (true) {
  1106. if (tt.get_token_line() != line) {
  1107. line = tt.get_token_line();
  1108. line_map[line] = token_array.size();
  1109. }
  1110. uint32_t token = tt.get_token();
  1111. switch (tt.get_token()) {
  1112. case TK_IDENTIFIER: {
  1113. StringName id = tt.get_token_identifier();
  1114. if (!identifier_map.has(id)) {
  1115. int idx = identifier_map.size();
  1116. identifier_map[id] = idx;
  1117. }
  1118. token |= identifier_map[id] << TOKEN_BITS;
  1119. } break;
  1120. case TK_CONSTANT: {
  1121. const Variant &c = tt.get_token_constant();
  1122. if (!constant_map.has(c)) {
  1123. int idx = constant_map.size();
  1124. constant_map[c] = idx;
  1125. }
  1126. token |= constant_map[c] << TOKEN_BITS;
  1127. } break;
  1128. case TK_BUILT_IN_TYPE: {
  1129. token |= tt.get_token_type() << TOKEN_BITS;
  1130. } break;
  1131. case TK_BUILT_IN_FUNC: {
  1132. token |= tt.get_token_built_in_func() << TOKEN_BITS;
  1133. } break;
  1134. case TK_NEWLINE: {
  1135. token |= tt.get_token_line_indent() << TOKEN_BITS;
  1136. } break;
  1137. case TK_ERROR: {
  1138. ERR_FAIL_V(Vector<uint8_t>());
  1139. } break;
  1140. default: {
  1141. }
  1142. };
  1143. token_array.push_back(token);
  1144. if (tt.get_token() == TK_EOF)
  1145. break;
  1146. tt.advance();
  1147. }
  1148. //reverse maps
  1149. Map<int, StringName> rev_identifier_map;
  1150. for (Map<StringName, int>::Element *E = identifier_map.front(); E; E = E->next()) {
  1151. rev_identifier_map[E->get()] = E->key();
  1152. }
  1153. Map<int, Variant> rev_constant_map;
  1154. const Variant *K = NULL;
  1155. while ((K = constant_map.next(K))) {
  1156. rev_constant_map[constant_map[*K]] = *K;
  1157. }
  1158. Map<int, uint32_t> rev_line_map;
  1159. for (Map<uint32_t, int>::Element *E = line_map.front(); E; E = E->next()) {
  1160. rev_line_map[E->get()] = E->key();
  1161. }
  1162. //save header
  1163. buf.resize(24);
  1164. buf.write[0] = 'G';
  1165. buf.write[1] = 'D';
  1166. buf.write[2] = 'S';
  1167. buf.write[3] = 'C';
  1168. encode_uint32(BYTECODE_VERSION, &buf.write[4]);
  1169. encode_uint32(identifier_map.size(), &buf.write[8]);
  1170. encode_uint32(constant_map.size(), &buf.write[12]);
  1171. encode_uint32(line_map.size(), &buf.write[16]);
  1172. encode_uint32(token_array.size(), &buf.write[20]);
  1173. //save identifiers
  1174. for (Map<int, StringName>::Element *E = rev_identifier_map.front(); E; E = E->next()) {
  1175. CharString cs = String(E->get()).utf8();
  1176. int len = cs.length() + 1;
  1177. int extra = 4 - (len % 4);
  1178. if (extra == 4)
  1179. extra = 0;
  1180. uint8_t ibuf[4];
  1181. encode_uint32(len + extra, ibuf);
  1182. for (int i = 0; i < 4; i++) {
  1183. buf.push_back(ibuf[i]);
  1184. }
  1185. for (int i = 0; i < len; i++) {
  1186. buf.push_back(cs[i] ^ 0xb6);
  1187. }
  1188. for (int i = 0; i < extra; i++) {
  1189. buf.push_back(0 ^ 0xb6);
  1190. }
  1191. }
  1192. for (Map<int, Variant>::Element *E = rev_constant_map.front(); E; E = E->next()) {
  1193. int len;
  1194. // Objects cannot be constant, never encode objects
  1195. Error err = encode_variant(E->get(), NULL, len, false);
  1196. ERR_FAIL_COND_V_MSG(err != OK, Vector<uint8_t>(), "Error when trying to encode Variant.");
  1197. int pos = buf.size();
  1198. buf.resize(pos + len);
  1199. encode_variant(E->get(), &buf.write[pos], len, false);
  1200. }
  1201. for (Map<int, uint32_t>::Element *E = rev_line_map.front(); E; E = E->next()) {
  1202. uint8_t ibuf[8];
  1203. encode_uint32(E->key(), &ibuf[0]);
  1204. encode_uint32(E->get(), &ibuf[4]);
  1205. for (int i = 0; i < 8; i++)
  1206. buf.push_back(ibuf[i]);
  1207. }
  1208. for (int i = 0; i < token_array.size(); i++) {
  1209. uint32_t token = token_array[i];
  1210. if (token & ~TOKEN_MASK) {
  1211. uint8_t buf4[4];
  1212. encode_uint32(token_array[i] | TOKEN_BYTE_MASK, &buf4[0]);
  1213. for (int j = 0; j < 4; j++) {
  1214. buf.push_back(buf4[j]);
  1215. }
  1216. } else {
  1217. buf.push_back(token);
  1218. }
  1219. }
  1220. return buf;
  1221. }
  1222. GDScriptTokenizerBuffer::Token GDScriptTokenizerBuffer::get_token(int p_offset) const {
  1223. int offset = token + p_offset;
  1224. if (offset < 0 || offset >= tokens.size())
  1225. return TK_EOF;
  1226. return GDScriptTokenizerBuffer::Token(tokens[offset] & TOKEN_MASK);
  1227. }
  1228. StringName GDScriptTokenizerBuffer::get_token_identifier(int p_offset) const {
  1229. int offset = token + p_offset;
  1230. ERR_FAIL_INDEX_V(offset, tokens.size(), StringName());
  1231. uint32_t identifier = tokens[offset] >> TOKEN_BITS;
  1232. ERR_FAIL_UNSIGNED_INDEX_V(identifier, (uint32_t)identifiers.size(), StringName());
  1233. return identifiers[identifier];
  1234. }
  1235. GDScriptFunctions::Function GDScriptTokenizerBuffer::get_token_built_in_func(int p_offset) const {
  1236. int offset = token + p_offset;
  1237. ERR_FAIL_INDEX_V(offset, tokens.size(), GDScriptFunctions::FUNC_MAX);
  1238. return GDScriptFunctions::Function(tokens[offset] >> TOKEN_BITS);
  1239. }
  1240. Variant::Type GDScriptTokenizerBuffer::get_token_type(int p_offset) const {
  1241. int offset = token + p_offset;
  1242. ERR_FAIL_INDEX_V(offset, tokens.size(), Variant::NIL);
  1243. return Variant::Type(tokens[offset] >> TOKEN_BITS);
  1244. }
  1245. int GDScriptTokenizerBuffer::get_token_line(int p_offset) const {
  1246. int offset = token + p_offset;
  1247. int pos = lines.find_nearest(offset);
  1248. if (pos < 0)
  1249. return -1;
  1250. if (pos >= lines.size())
  1251. pos = lines.size() - 1;
  1252. uint32_t l = lines.getv(pos);
  1253. return l & TOKEN_LINE_MASK;
  1254. }
  1255. int GDScriptTokenizerBuffer::get_token_column(int p_offset) const {
  1256. int offset = token + p_offset;
  1257. int pos = lines.find_nearest(offset);
  1258. if (pos < 0)
  1259. return -1;
  1260. if (pos >= lines.size())
  1261. pos = lines.size() - 1;
  1262. uint32_t l = lines.getv(pos);
  1263. return l >> TOKEN_LINE_BITS;
  1264. }
  1265. int GDScriptTokenizerBuffer::get_token_line_indent(int p_offset) const {
  1266. int offset = token + p_offset;
  1267. ERR_FAIL_INDEX_V(offset, tokens.size(), 0);
  1268. return tokens[offset] >> TOKEN_BITS;
  1269. }
  1270. const Variant &GDScriptTokenizerBuffer::get_token_constant(int p_offset) const {
  1271. int offset = token + p_offset;
  1272. ERR_FAIL_INDEX_V(offset, tokens.size(), nil);
  1273. uint32_t constant = tokens[offset] >> TOKEN_BITS;
  1274. ERR_FAIL_UNSIGNED_INDEX_V(constant, (uint32_t)constants.size(), nil);
  1275. return constants[constant];
  1276. }
  1277. String GDScriptTokenizerBuffer::get_token_error(int p_offset) const {
  1278. ERR_FAIL_V(String());
  1279. }
  1280. void GDScriptTokenizerBuffer::advance(int p_amount) {
  1281. ERR_FAIL_INDEX(p_amount + token, tokens.size());
  1282. token += p_amount;
  1283. }
  1284. GDScriptTokenizerBuffer::GDScriptTokenizerBuffer() {
  1285. token = 0;
  1286. }