38 |
38 |
39 #define SCOPE(n) (m_scopeStack[m_scopeCursor - n]) |
39 #define SCOPE(n) (m_scopeStack[m_scopeCursor - n]) |
40 |
40 |
41 static const StringList g_validZandronumVersions = {"1.2", "1.3", "2.0"}; |
41 static const StringList g_validZandronumVersions = {"1.2", "1.3", "2.0"}; |
42 |
42 |
43 // ============================================================================ |
43 // _________________________________________________________________________________________________ |
44 // |
44 // |
45 BotscriptParser::BotscriptParser() : |
45 BotscriptParser::BotscriptParser() : |
46 m_isReadOnly (false), |
46 m_isReadOnly (false), |
47 m_mainBuffer (new DataBuffer), |
47 m_mainBuffer (new DataBuffer), |
48 m_onenterBuffer (new DataBuffer), |
48 m_onenterBuffer (new DataBuffer), |
58 m_highestGlobalVarIndex (0), |
58 m_highestGlobalVarIndex (0), |
59 m_highestStateVarIndex (0), |
59 m_highestStateVarIndex (0), |
60 m_zandronumVersion (10200), // 1.2 |
60 m_zandronumVersion (10200), // 1.2 |
61 m_defaultZandronumVersion (true) {} |
61 m_defaultZandronumVersion (true) {} |
62 |
62 |
63 // ============================================================================ |
63 // _________________________________________________________________________________________________ |
64 // |
64 // |
65 BotscriptParser::~BotscriptParser() |
65 BotscriptParser::~BotscriptParser() |
66 { |
66 { |
67 delete m_lexer; |
67 delete m_lexer; |
68 } |
68 } |
69 |
69 |
70 // ============================================================================ |
70 // _________________________________________________________________________________________________ |
71 // |
71 // |
72 void BotscriptParser::checkToplevel() |
72 void BotscriptParser::checkToplevel() |
73 { |
73 { |
74 if (m_currentMode != ParserMode::TopLevel) |
74 if (m_currentMode != ParserMode::TopLevel) |
75 error ("%1-statements may only be defined at top level!", getTokenString()); |
75 error ("%1-statements may only be defined at top level!", getTokenString()); |
76 } |
76 } |
77 |
77 |
78 // ============================================================================ |
78 // _________________________________________________________________________________________________ |
79 // |
79 // |
80 void BotscriptParser::checkNotToplevel() |
80 void BotscriptParser::checkNotToplevel() |
81 { |
81 { |
82 if (m_currentMode == ParserMode::TopLevel) |
82 if (m_currentMode == ParserMode::TopLevel) |
83 error ("%1-statements must not be defined at top level!", getTokenString()); |
83 error ("%1-statements must not be defined at top level!", getTokenString()); |
84 } |
84 } |
85 |
85 |
86 // ============================================================================ |
86 // _________________________________________________________________________________________________ |
87 // |
87 // |
88 // Main compiler code. Begins read of the script file, checks the syntax of it |
88 // Main compiler code. Begins read of the script file, checks the syntax of it |
89 // and writes the data to the object file via Objwriter - which also takes care |
89 // and writes the data to the object file via Objwriter - which also takes care |
90 // of necessary buffering so stuff is written in the correct order. |
90 // of necessary buffering so stuff is written in the correct order. |
91 // |
91 // |
293 currentBuffer()->writeHeader (DataHeader::Event); |
294 currentBuffer()->writeHeader (DataHeader::Event); |
294 currentBuffer()->writeDWord (e->number); |
295 currentBuffer()->writeDWord (e->number); |
295 m_numEvents++; |
296 m_numEvents++; |
296 } |
297 } |
297 |
298 |
298 // ============================================================================ |
299 // _________________________________________________________________________________________________ |
299 // |
300 // |
300 void BotscriptParser::parseMainloop() |
301 void BotscriptParser::parseMainloop() |
301 { |
302 { |
302 checkToplevel(); |
303 checkToplevel(); |
303 m_lexer->mustGetNext (Token::BraceStart); |
304 m_lexer->mustGetNext (Token::BraceStart); |
304 |
305 |
305 m_currentMode = ParserMode::MainLoop; |
306 m_currentMode = ParserMode::MainLoop; |
306 m_mainLoopBuffer->writeHeader (DataHeader::MainLoop); |
307 m_mainLoopBuffer->writeHeader (DataHeader::MainLoop); |
307 } |
308 } |
308 |
309 |
309 // ============================================================================ |
310 // _________________________________________________________________________________________________ |
310 // |
311 // |
311 void BotscriptParser::parseOnEnterExit() |
312 void BotscriptParser::parseOnEnterExit() |
312 { |
313 { |
313 checkToplevel(); |
314 checkToplevel(); |
314 bool onenter = (tokenIs (Token::Onenter)); |
315 bool onenter = (tokenIs (Token::Onenter)); |
315 m_lexer->mustGetNext (Token::BraceStart); |
316 m_lexer->mustGetNext (Token::BraceStart); |
316 m_currentMode = onenter ? ParserMode::Onenter : ParserMode::Onexit; |
317 m_currentMode = onenter ? ParserMode::Onenter : ParserMode::Onexit; |
317 currentBuffer()->writeHeader (onenter ? DataHeader::OnEnter : DataHeader::OnExit); |
318 currentBuffer()->writeHeader (onenter ? DataHeader::OnEnter : DataHeader::OnExit); |
318 } |
319 } |
319 |
320 |
320 // ============================================================================ |
321 // _________________________________________________________________________________________________ |
321 // |
322 // |
322 void BotscriptParser::parseVar() |
323 void BotscriptParser::parseVar() |
323 { |
324 { |
324 Variable* var = new Variable; |
325 Variable* var = new Variable; |
325 var->origin = m_lexer->describeCurrentPosition(); |
326 var->origin = m_lexer->describeCurrentPosition(); |
552 SCOPE (0).mark2 = mark2; |
553 SCOPE (0).mark2 = mark2; |
553 SCOPE (0).buffer1 = incr; |
554 SCOPE (0).buffer1 = incr; |
554 SCOPE (0).type = SCOPE_For; |
555 SCOPE (0).type = SCOPE_For; |
555 } |
556 } |
556 |
557 |
557 // ============================================================================ |
558 // _________________________________________________________________________________________________ |
558 // |
559 // |
559 void BotscriptParser::parseDoBlock() |
560 void BotscriptParser::parseDoBlock() |
560 { |
561 { |
561 checkNotToplevel(); |
562 checkNotToplevel(); |
562 pushScope(); |
563 pushScope(); |
563 m_lexer->mustGetNext (Token::BraceStart); |
564 m_lexer->mustGetNext (Token::BraceStart); |
564 SCOPE (0).mark1 = currentBuffer()->addMark (""); |
565 SCOPE (0).mark1 = currentBuffer()->addMark (""); |
565 SCOPE (0).type = SCOPE_Do; |
566 SCOPE (0).type = SCOPE_Do; |
566 } |
567 } |
567 |
568 |
568 // ============================================================================ |
569 // _________________________________________________________________________________________________ |
569 // |
570 // |
570 void BotscriptParser::parseSwitchBlock() |
571 void BotscriptParser::parseSwitchBlock() |
571 { |
572 { |
572 // This gets a bit tricky. switch is structured in the |
573 // This gets a bit tricky. switch is structured in the |
573 // bytecode followingly: |
574 // bytecode followingly: |
925 m_lexer->mustGetNext (Token::ParenEnd); |
928 m_lexer->mustGetNext (Token::ParenEnd); |
926 m_lexer->mustGetNext (Token::Semicolon); |
929 m_lexer->mustGetNext (Token::Semicolon); |
927 addCommandDefinition (comm); |
930 addCommandDefinition (comm); |
928 } |
931 } |
929 |
932 |
930 // ============================================================================ |
933 // _________________________________________________________________________________________________ |
931 // |
934 // |
932 // Parses a using statement |
935 // Parses a using statement |
933 // |
936 // |
934 void BotscriptParser::parseUsing() |
937 void BotscriptParser::parseUsing() |
935 { |
938 { |
936 checkToplevel(); |
939 checkToplevel(); |
937 m_lexer->mustGetSymbol ("zandronum"); |
940 m_lexer->mustGetSymbol ("zandronum"); |
938 String versionText; |
941 String versionText; |
939 |
942 |
940 while (m_lexer->next() and (m_lexer->tokenType() == Token::Number or m_lexer->tokenType() == |
943 while (m_lexer->next() |
941 Token::Dot)) |
944 and (m_lexer->tokenType() == Token::Number or m_lexer->tokenType() == Token::Dot)) |
|
945 { |
942 versionText += getTokenString(); |
946 versionText += getTokenString(); |
|
947 } |
943 |
948 |
944 // Note: at this point the lexer's pointing at the token after the version. |
949 // Note: at this point the lexer's pointing at the token after the version. |
945 if (versionText.isEmpty()) |
950 if (versionText.isEmpty()) |
946 error ("expected version string, got `%1`", getTokenString()); |
951 error ("expected version string, got `%1`", getTokenString()); |
947 |
952 |
1084 |
1091 |
1085 error ("WTF bad operator token %1", m_lexer->DescribeToken (m_lexer->token())); |
1092 error ("WTF bad operator token %1", m_lexer->DescribeToken (m_lexer->token())); |
1086 return (AssignmentOperator) 0; |
1093 return (AssignmentOperator) 0; |
1087 } |
1094 } |
1088 |
1095 |
1089 // ============================================================================ |
1096 // _________________________________________________________________________________________________ |
1090 // |
1097 // |
1091 struct AssignmentDataHeaderInfo |
1098 const struct AssignmentDataHeaderInfo |
1092 { |
1099 { |
1093 AssignmentOperator op; |
1100 AssignmentOperator op; |
1094 DataHeader local; |
1101 DataHeader local; |
1095 DataHeader global; |
1102 DataHeader global; |
1096 DataHeader array; |
1103 DataHeader array; |
|
1104 } |
|
1105 AssignmentDataHeaders[] = |
|
1106 { |
|
1107 { |
|
1108 ASSIGNOP_Assign, |
|
1109 DataHeader::AssignLocalVar, |
|
1110 DataHeader::AssignGlobalVar, |
|
1111 DataHeader::AssignGlobalArray |
|
1112 }, |
|
1113 { |
|
1114 ASSIGNOP_Add, |
|
1115 DataHeader::AddLocalVar, |
|
1116 DataHeader::AddGlobalVar, |
|
1117 DataHeader::AddGlobalArray |
|
1118 }, |
|
1119 { |
|
1120 ASSIGNOP_Subtract, |
|
1121 DataHeader::SubtractLocalVar, |
|
1122 DataHeader::SubtractGlobalVar, |
|
1123 DataHeader::SubtractGlobalArray |
|
1124 }, |
|
1125 { |
|
1126 ASSIGNOP_Multiply, |
|
1127 DataHeader::MultiplyLocalVar, |
|
1128 DataHeader::MultiplyGlobalVar, |
|
1129 DataHeader::MultiplyGlobalArray |
|
1130 }, |
|
1131 { |
|
1132 ASSIGNOP_Divide, |
|
1133 DataHeader::DivideLocalVar, |
|
1134 DataHeader::DivideGlobalVar, |
|
1135 DataHeader::DivideGlobalArray |
|
1136 }, |
|
1137 { |
|
1138 ASSIGNOP_Modulus, |
|
1139 DataHeader::ModLocalVar, |
|
1140 DataHeader::ModGlobalVar, |
|
1141 DataHeader::ModGlobalArray |
|
1142 }, |
|
1143 { |
|
1144 ASSIGNOP_Increase, |
|
1145 DataHeader::IncreaseLocalVar, |
|
1146 DataHeader::IncreaseGlobalVar, |
|
1147 DataHeader::IncreaseGlobalArray |
|
1148 }, |
|
1149 { |
|
1150 ASSIGNOP_Decrease, |
|
1151 DataHeader::DecreaseLocalVar, |
|
1152 DataHeader::DecreaseGlobalVar, |
|
1153 DataHeader::DecreaseGlobalArray |
|
1154 }, |
1097 }; |
1155 }; |
1098 |
1156 |
1099 const AssignmentDataHeaderInfo gAssignmentDataHeaders[] = |
|
1100 { |
|
1101 { ASSIGNOP_Assign, DataHeader::AssignLocalVar, DataHeader::AssignGlobalVar, |
|
1102 DataHeader::AssignGlobalArray }, |
|
1103 { ASSIGNOP_Add, DataHeader::AddLocalVar, DataHeader::AddGlobalVar, |
|
1104 DataHeader::AddGlobalArray }, |
|
1105 { ASSIGNOP_Subtract, DataHeader::SubtractLocalVar, DataHeader::SubtractGlobalVar, |
|
1106 DataHeader::SubtractGlobalArray }, |
|
1107 { ASSIGNOP_Multiply, DataHeader::MultiplyLocalVar, DataHeader::MultiplyGlobalVar, |
|
1108 DataHeader::MultiplyGlobalArray }, |
|
1109 { ASSIGNOP_Divide, DataHeader::DivideLocalVar, DataHeader::DivideGlobalVar, |
|
1110 DataHeader::DivideGlobalArray }, |
|
1111 { ASSIGNOP_Modulus, DataHeader::ModLocalVar, DataHeader::ModGlobalVar, |
|
1112 DataHeader::ModGlobalArray }, |
|
1113 { ASSIGNOP_Increase, DataHeader::IncreaseLocalVar, DataHeader::IncreaseGlobalVar, |
|
1114 DataHeader::IncreaseGlobalArray }, |
|
1115 { ASSIGNOP_Decrease, DataHeader::DecreaseLocalVar, DataHeader::DecreaseGlobalVar, |
|
1116 DataHeader::DecreaseGlobalArray }, |
|
1117 }; |
|
1118 |
|
1119 DataHeader BotscriptParser::getAssigmentDataHeader (AssignmentOperator op, Variable* var) |
1157 DataHeader BotscriptParser::getAssigmentDataHeader (AssignmentOperator op, Variable* var) |
1120 { |
1158 { |
1121 for (const auto& a : gAssignmentDataHeaders) |
1159 for (const auto& a : AssignmentDataHeaders) |
1122 { |
1160 { |
1123 if (a.op != op) |
1161 if (a.op != op) |
1124 continue; |
1162 continue; |
1125 |
1163 |
1126 if (var->isarray) |
1164 if (var->isarray) |
1134 |
1172 |
1135 error ("WTF: couldn't find data header for operator #%1", op); |
1173 error ("WTF: couldn't find data header for operator #%1", op); |
1136 return (DataHeader) 0; |
1174 return (DataHeader) 0; |
1137 } |
1175 } |
1138 |
1176 |
1139 // ============================================================================ |
1177 // _________________________________________________________________________________________________ |
1140 // |
1178 // |
1141 // Parses an assignment. An assignment starts with a variable name, followed |
1179 // Parses an assignment. An assignment starts with a variable name, followed |
1142 // by an assignment operator, followed by an expression value. Expects current |
1180 // by an assignment operator, followed by an expression value. Expects current |
1143 // token to be the name of the variable, and expects the variable to be given. |
1181 // token to be the name of the variable, and expects the variable to be given. |
1144 // |
1182 // |
1286 casedata.data = m_switchBuffer = new DataBuffer; |
1324 casedata.data = m_switchBuffer = new DataBuffer; |
1287 SCOPE(0).cases << casedata; |
1325 SCOPE(0).cases << casedata; |
1288 info->casecursor++; |
1326 info->casecursor++; |
1289 } |
1327 } |
1290 |
1328 |
1291 // ============================================================================ |
1329 // _________________________________________________________________________________________________ |
1292 // |
1330 // |
1293 bool BotscriptParser::tokenIs (Token a) |
1331 bool BotscriptParser::tokenIs (Token a) |
1294 { |
1332 { |
1295 return (m_lexer->tokenType() == a); |
1333 return (m_lexer->tokenType() == a); |
1296 } |
1334 } |
1297 |
1335 |
1298 // ============================================================================ |
1336 // _________________________________________________________________________________________________ |
1299 // |
1337 // |
1300 String BotscriptParser::getTokenString() |
1338 String BotscriptParser::getTokenString() |
1301 { |
1339 { |
1302 return m_lexer->token()->text; |
1340 return m_lexer->token()->text; |
1303 } |
1341 } |
1304 |
1342 |
1305 // ============================================================================ |
1343 // _________________________________________________________________________________________________ |
1306 // |
1344 // |
1307 String BotscriptParser::describePosition() const |
1345 String BotscriptParser::describePosition() const |
1308 { |
1346 { |
1309 Lexer::TokenInfo* tok = m_lexer->token(); |
1347 Lexer::TokenInfo* tok = m_lexer->token(); |
1310 return tok->file + ":" + String (tok->line) + ":" + String (tok->column); |
1348 return tok->file + ":" + String (tok->line) + ":" + String (tok->column); |
1311 } |
1349 } |
1312 |
1350 |
1313 // ============================================================================ |
1351 // _________________________________________________________________________________________________ |
|
1352 // |
|
1353 // Where are we writing to right now? |
1314 // |
1354 // |
1315 DataBuffer* BotscriptParser::currentBuffer() |
1355 DataBuffer* BotscriptParser::currentBuffer() |
1316 { |
1356 { |
1317 if (m_switchBuffer != null) |
1357 if (m_switchBuffer != null) |
1318 return m_switchBuffer; |
1358 return m_switchBuffer; |
1392 fwrite (m_mainBuffer->buffer(), 1, m_mainBuffer->writtenSize(), fp); |
1432 fwrite (m_mainBuffer->buffer(), 1, m_mainBuffer->writtenSize(), fp); |
1393 print ("-- %1 byte%s1 written to %2\n", m_mainBuffer->writtenSize(), outfile); |
1433 print ("-- %1 byte%s1 written to %2\n", m_mainBuffer->writtenSize(), outfile); |
1394 fclose (fp); |
1434 fclose (fp); |
1395 } |
1435 } |
1396 |
1436 |
1397 // ============================================================================ |
1437 // _________________________________________________________________________________________________ |
1398 // |
1438 // |
1399 // Attempt to find the variable by the given name. Looks from current scope |
1439 // Attempt to find the variable by the given name. Looks from current scope |
1400 // downwards. |
1440 // downwards. |
1401 // |
1441 // |
1402 Variable* BotscriptParser::findVariable (const String& name) |
1442 Variable* BotscriptParser::findVariable (const String& name) |
1411 } |
1451 } |
1412 |
1452 |
1413 return null; |
1453 return null; |
1414 } |
1454 } |
1415 |
1455 |
1416 // ============================================================================ |
1456 // _________________________________________________________________________________________________ |
1417 // |
1457 // |
1418 // Is the parser currently in global state (i.e. not in any specific state)? |
1458 // Is the parser currently in global state (i.e. not in any specific state)? |
1419 // |
1459 // |
1420 bool BotscriptParser::isInGlobalState() const |
1460 bool BotscriptParser::isInGlobalState() const |
1421 { |
1461 { |
1422 return m_currentState.isEmpty(); |
1462 return m_currentState.isEmpty(); |
1423 } |
1463 } |
1424 |
1464 |
1425 // ============================================================================ |
1465 // _________________________________________________________________________________________________ |
1426 // |
1466 // |
1427 void BotscriptParser::suggestHighestVarIndex (bool global, int index) |
1467 void BotscriptParser::suggestHighestVarIndex (bool global, int index) |
1428 { |
1468 { |
1429 if (global) |
1469 if (global) |
1430 m_highestGlobalVarIndex = max (m_highestGlobalVarIndex, index); |
1470 m_highestGlobalVarIndex = max (m_highestGlobalVarIndex, index); |
1431 else |
1471 else |
1432 m_highestStateVarIndex = max (m_highestStateVarIndex, index); |
1472 m_highestStateVarIndex = max (m_highestStateVarIndex, index); |
1433 } |
1473 } |
1434 |
1474 |
1435 // ============================================================================ |
1475 // _________________________________________________________________________________________________ |
1436 // |
1476 // |
1437 int BotscriptParser::getHighestVarIndex (bool global) |
1477 int BotscriptParser::getHighestVarIndex (bool global) |
1438 { |
1478 { |
1439 if (global) |
1479 if (global) |
1440 return m_highestGlobalVarIndex; |
1480 return m_highestGlobalVarIndex; |