]> git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
this allows builtin numbers to be constant expressions, not just constants
authorWolfgang Bumiller <wry.git@bumiller.com>
Thu, 25 Apr 2013 16:47:54 +0000 (18:47 +0200)
committerWolfgang Bumiller <wry.git@bumiller.com>
Thu, 25 Apr 2013 16:47:54 +0000 (18:47 +0200)
parser.c

index c81fd2c4db714d9e410b726accbe3ca19321cf48..d95a44642beaa606c13b88d07effdf6a760e0bc8 100644 (file)
--- a/parser.c
+++ b/parser.c
@@ -5640,6 +5640,8 @@ skipvar:
 
         if (parser->tok == '#') {
             ast_function *func = NULL;
+            ast_value *number;
+            int        builtin_num;
 
             if (localblock) {
                 parseerror(parser, "cannot declare builtins within functions");
@@ -5653,11 +5655,30 @@ skipvar:
                 parseerror(parser, "expected builtin number");
                 break;
             }
-            if (parser->tok != TOKEN_INTCONST) {
+
+            number = (ast_value*)parse_expression_leave(parser, true, false, false);
+            if (!number) {
+                parseerror(parser, "builtin number expected");
+                break;
+            }
+            if (!ast_istype(number, ast_value) || !number->hasvalue || number->cvq != CV_CONST)
+            {
+                ast_unref(number);
+                parseerror(parser, "builtin number must be a compile time constant");
+                break;
+            }
+            if (number->expression.vtype == TYPE_INTEGER)
+                builtin_num = number->constval.vint;
+            else if (number->expression.vtype == TYPE_FLOAT)
+                builtin_num = number->constval.vfloat;
+            else {
+                ast_unref(number);
                 parseerror(parser, "builtin number must be an integer constant");
                 break;
             }
-            if (parser_token(parser)->constval.i < 0) {
+            ast_unref(number);
+
+            if (builtin_num < 0) {
                 parseerror(parser, "builtin number must be an integer greater than zero");
                 break;
             }
@@ -5677,10 +5698,10 @@ skipvar:
                 }
                 vec_push(parser->functions, func);
 
-                func->builtin = -parser_token(parser)->constval.i-1;
+                func->builtin = -builtin_num-1;
             }
 
-            if (!parser_next(parser)) {
+            if (parser->tok != ',' && parser->tok != ';') {
                 parseerror(parser, "expected comma or semicolon");
                 if (func)
                     ast_function_delete(func);