]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
an eval toy for the RPN hackers. RPN probably is turing complete with this.
authorRudolf Polzer <divverent@xonotic.org>
Tue, 1 Oct 2013 15:49:44 +0000 (17:49 +0200)
committerRudolf Polzer <divverent@xonotic.org>
Tue, 1 Oct 2013 15:49:44 +0000 (17:49 +0200)
qcsrc/common/command/rpn.qc

index 66e8554a87d84f3cf539ca17ec9258726b567dd2..4fc918c4a1f0bc17649b0b3128666047317cdcb4 100644 (file)
@@ -535,6 +535,10 @@ void GenericCommand_rpn(float request, float argc, string command)
                                        } else if(rpncmd == "sprintf1s") {
                                                s = rpn_pop();
                                                rpn_set(sprintf(s, rpn_get()));
+                                       } else if(rpncmd == "eval") {
+                                               s = rpn_pop();
+                                               tokenize_console(strcat(s, substring(command, argv_end_index(rpnpos), -1)));
+                                               rpnpos = -1;
                                        } else {
                                                rpn_push(cvar_string(rpncmd));
                                        }
@@ -587,6 +591,7 @@ void GenericCommand_rpn(float request, float argc, string command)
                        print("    s /MD4 digest ---------------------> s   : MD4 digest\n");
                        print("    s /SHA256 digest ------------------> s   : SHA256 digest\n");
                        print("    s /formatstring sprintf1s ---------> s   : sprintf with 1 string (pad, cut)\n");
+                       print("    s eval ---------------------------->     : does something eval\n");
                        print("    Set operations operate on 'such''strings'.\n");
                        print("    Unknown tokens insert their cvar value.\n");
                        return;