]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - prvm_execprogram.h
redesigned input networking code (still same protocol) and did a lot of cleaning...
[xonotic/darkplaces.git] / prvm_execprogram.h
index 46ab00608d7db762ac73feb029ad58018ea88d93..26fafb810c179baa7141476d28b11034511ecba5 100644 (file)
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("%s attempted to write to an out of bounds edict (%i)", PRVM_NAME, OPB->_int);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                ptr = (prvm_eval_t *)((unsigned char *)prog->edictsfields + OPB->_int);
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("%s attempted to write to an out of bounds edict (%i)", PRVM_NAME, OPB->_int);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                ptr = (prvm_eval_t *)((unsigned char *)prog->edictsfields + OPB->_int);
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("%s attempted to address an invalid field (%i) in an edict", PRVM_NAME, OPB->_int);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                if (OPA->edict == 0 && !prog->allowworldwrites)
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("forbidden assignment to null/world entity in %s", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
                                ed = PRVM_PROG_TO_EDICT(OPA->edict);
                                OPC->_int = (unsigned char *)((int *)ed->fields.vp + OPB->_int) - (unsigned char *)prog->edictsfields;
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("%s attempted to read an invalid field in an edict (%i)", PRVM_NAME, OPB->_int);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                ed = PRVM_PROG_TO_EDICT(OPA->edict);
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR("%s attempted to read an invalid field in an edict (%i)", PRVM_NAME, OPB->_int);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                ed = PRVM_PROG_TO_EDICT(OPA->edict);
                                st = prog->statements + PRVM_LeaveFunction();
                                startst = st;
                                if (prog->depth <= exitdepth)
-                                       return;         // all done
+                                       goto cleanup; // all done
                                if (prog->trace != cachedpr_trace)
                                        goto chooseexecprogram;
                                break;
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to write to an out of bounds edict", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                ptr = (prvm_eval_t *)((unsigned char *)prog->edictsfields + OPB->_int);
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to read an out of bounds edict number", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
                                if (OPB->_int < 0 || OPB->_int >= progs->entityfields)
                                {
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to read an invalid field in an edict", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                ed = PRVM_PROG_TO_EDICT(OPA->edict);
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to write to an invalid indexed global", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                pr_globals[OPB->_int] = OPA->_float;
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to write to an invalid indexed global", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                pr_globals[OPB->_int  ] = OPA->vector[0];
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to address an out of bounds global", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                OPC->_float = pr_globals[i];
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to read an invalid indexed global", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                OPC->_float = pr_globals[OPA->_int];
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs attempted to read an invalid indexed global", PRVM_NAME);
-                                       return;
+                                       goto cleanup;
                                }
 #endif
                                OPC->vector[0] = pr_globals[OPA->_int  ];
                                        prog->xfunction->profile += (st - startst);
                                        prog->xstatement = st - prog->statements;
                                        PRVM_ERROR ("%s Progs boundcheck failed at line number %d, value is < 0 or >= %d", PRVM_NAME, st->b, st->c);
-                                       return;
+                                       goto cleanup;
                                }
                                break;
 
                                prog->xfunction->profile += (st - startst);
                                prog->xstatement = st - prog->statements;
                                PRVM_ERROR ("Bad opcode %i in %s", st->op, PRVM_NAME);
+                               goto cleanup;
                        }
                }