- fixed verification with unary operators

Tue, 04 Feb 2014 13:38:22 +0200

author
Teemu Piippo <crimsondusk64@gmail.com>
date
Tue, 04 Feb 2014 13:38:22 +0200
changeset 95
4db95b92c29a
parent 94
8915ee6a277d
child 96
3384d7aa036a

- fixed verification with unary operators

src/Expression.cc file | annotate | diff | comparison | revisions
--- a/src/Expression.cc	Tue Feb 04 04:35:49 2014 +0200
+++ b/src/Expression.cc	Tue Feb 04 13:38:22 2014 +0200
@@ -235,6 +235,14 @@
 //
 void Expression::TryVerifyValue (bool* verified, SymbolList::Iterator it)
 {
+	// If it's an unary operator we skip to its value. The actual operator will
+	// be verified separately.
+	if ((*it)->GetType() == eOperatorSymbol &&
+		gOperators[static_cast<ExpressionOperator*> (*it)->GetID()].numoperands == 1)
+	{
+		++it;
+	}
+
 	int i = it - mSymbols.begin();
 
 	// Ensure it's an actual value
@@ -414,10 +422,12 @@
 	ExpressionValue* newval = new ExpressionValue (mType);
 
 	if (isconstexpr == false)
+	{
+		// This is not a constant expression so we'll have to use databuffers
+		// to convey the expression to bytecode. Actual value cannot be evaluated
+		// until Zandronum processes it at run-time.
 		newval->SetBuffer (new DataBuffer);
 
-	if (isconstexpr == false)
-	{
 		if (op->GetID() == opTernary)
 		{
 			// There isn't a dataheader for ternary operator. Instead, we use dhIfNotGoto

mercurial