This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| multiple_return_values [2018/02/19 10:54] – removed korshun | multiple_return_values [2019/04/21 21:32] (current) – korshun | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Multiple return values ====== | ||
| + | |||
| + | Some ACSUtils functions return multiple values (e.g. [[math# | ||
| + | |||
| + | ACSUtils uses a convention to fake returning multiple values from a function. The convention is as follows: there are 8 global variables with names '' | ||
| + | |||
| + | Here's an example, '' | ||
| + | |||
| + | < | ||
| + | RotateVector(x, | ||
| + | int newX = r1; | ||
| + | int newY = r2; | ||
| + | </ | ||
| + | |||
| + | <note warning> | ||
| + | You should retrieve the return values **as soon as possible**, or else they may get overwritten by other functions that return multiple values. | ||
| + | |||
| + | Don't do this: | ||
| + | < | ||
| + | SomeFunctionWithMultipleReturnValues(...); | ||
| + | SomeOtherFunction(r1); | ||
| + | int b = r2; | ||
| + | </ | ||
| + | Because '' | ||
| + | |||
| + | < | ||
| + | SomeFunctionWithMultipleReturnValues(...); | ||
| + | int a = r1; | ||
| + | int b = r2; | ||
| + | |||
| + | SomeOtherFunction(a); | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | <note important> | ||
| + | |||
| + | < | ||
| + | ParseFixed(" | ||
| + | int error = r1; | ||
| + | int result = r2; // no compiler error, despite assigning a fixed to int | ||
| + | </ | ||
| + | |||
| + | </ | ||
| + | |||
| + | But overwriting argument variables immediately after calling the function is valid: | ||
| + | < | ||
| + | RotateVector(x, | ||
| + | x = r1; | ||
| + | y = r2; | ||
| + | </ | ||
| + | |||
| + | An example of a function returning three values: | ||
| + | < | ||
| + | normalize3d(x, | ||
| + | int newX = r1; | ||
| + | int newY = r2; | ||
| + | int newZ = r3; | ||
| + | </ | ||