Difference between revisions of "SaveIP"

From the Oblivion ConstructionSet Wiki
Jump to navigation Jump to search
imported>TS7
m (Reverted edit of Hd4Uli, changed back to last version by DragoonWraith)
imported>Hd4Uli
m
Line 20: Line 20:
    
    
     ; update the loop counter
     ; update the loop counter
     set var to var + 1
     set var to var   1
    
    
     ; we only want to go through the loop three times, so check the loop counter
     ; we only want to go through the loop three times, so check the loop counter
Line 40: Line 40:


A more familiar For-loop in a normal programming language would look like this:
A more familiar For-loop in a normal programming language would look like this:
<pre>for (i = 0; i < 5; i++)
<pre>for (i = 0; i < 5; i )
{
{
   for (j = 0; j < 3 ; j++)
   for (j = 0; j < 3 ; j )
   {
   {
     //Do Something
     //Do Something
Line 56: Line 56:
   Label 1 ; top of inner loop
   Label 1 ; top of inner loop
     PrintToConsole "i = %.0f, j = %.0f" i, j
     PrintToConsole "i = %.0f, j = %.0f" i, j
     set j to ( j + 1 )
     set j to ( j   1 )
     if ( j < 3 )
     if ( j < 3 )
       GoTo 1 ; equivalent to RestoreIP 1
       GoTo 1 ; equivalent to RestoreIP 1
     endif
     endif
   set i to ( i + 1 )
   set i to ( i   1 )
   if ( i < 5 )
   if ( i < 5 )
     GoTo 0
     GoTo 0

Revision as of 16:19, 1 September 2007

A command for Oblivion Script Extender Syntax:

SaveIP [labelID]

This command allows you to set up one or more named labels within a script. It is identical to Label. Using GoTo or RestoreIP causes script processing to jump to the label, allowing you to set up simple loops. By providing an optional label ID, multiple labels or nested loops can be defined.

Example:

begin onActivate
    ; declare a variable to keep track of the number of times we've gone through the loop
    long var
    set var to 0
   
    ; save the current instruction pointer
    ; this records that the beginning of the loop is right before the PrintToConsole command
    SaveIP ; could also use Label
   
    ; print the current loop count
    PrintToConsole "loop %f" var
   
    ; update the loop counter
    set var to var   1
   
    ; we only want to go through the loop three times, so check the loop counter
    if var < 3
        ; jump back to the saved location
        RestoreIP ; could also use Goto
    endif
   
    ; if we get here, we're done with the loop
end

When activated, this script will print:

loop 0.0000
loop 1.0000
loop 2.0000

To support nested loops, the SaveIP and RestoreIP commands take an optional integer parameter specifying which 'slot' to save the instruction location in. If you don't specify a number, it defaults to 0. There are 256 slots in the internal list.

A more familiar For-loop in a normal programming language would look like this:

for (i = 0; i < 5; i  )
{
  for (j = 0; j < 3 ; j  )
  {
    //Do Something
  }
}

To create the same loop using OBSE functions:

short i
short j

Label 0 ; top of outer loop, equivalent to SaveIP 0
  set j to 0
  Label 1 ; top of inner loop
    PrintToConsole "i = %.0f, j = %.0f" i, j
    set j to ( j   1 )
    if ( j < 3 )
      GoTo 1 ; equivalent to RestoreIP 1
    endif
  set i to ( i   1 )
  if ( i < 5 )
    GoTo 0
  endif

Note that unless the above loop is wrapped inside a conditional statement or a block like OnActivate, it will restart the very next frame and every frame thereafter.

Notes

  • These functions are considered "beta", and may be unreliable. Further testing is needed.
  • Issues may arise when two or more scripts use the same label codes.
  • Be careful to make sure your loop has an exit condition, otherwise you run the risk of creating an infinite loop, which can freeze the game and make it impossible for the player to exit.

See Also

Label RestoreIP GoTo