User Tools

Site Tools


prpl:setfieldcell

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
prpl:setfieldcell [2016/12/02 23:34] – external edit 127.0.0.1prpl:setfieldcell [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 4: Line 4:
  
 ^Arguments^Result^Notation^ ^Arguments^Result^Notation^
-| | | [ - ] |+X, Y, VectorUp, VectorRight | | [ x1 y1 n1 n2 - ] |
  
  
 === Description === === Description ===
 +Assigns a directional field on a specified cell. Only one field can exist on a cell - changing a field again will fully override the previous field.
 +
 +VectorUp and VectorRight control the direction of the field. For example, values of:
 +  * 1 1 will create a field that points in the upper right.
 +  * 1 0 will create a field that points up.
 +  * -5 0 will create a stronger field that points down.
  
 === Examples === === Examples ===
-<code> f2 = GetFloatFromStack(); //force y  +Spawn a weak field that points right at coordinates 5,5. 
- f1 = GetFloatFromStack(); //force x  +<code> 
- i2 = GetIntFromStack(); // +5 5 0.0 1.0 SetFieldCell 
- i1 = GetIntFromStack(); //x  +</code> 
- + 
 +Spawn some fields in a radius under a unit. 
 +<code> 
 +$RadiusX:
 +$RadiusY:
 +$Power:5.0 
 +$AngleDegrees:45 
 + 
 +once 
 +    #Convert angle in degrees to angle in radians 
 +    <-AngleDegrees PI mul 180 div ->AngleRadians 
 +     
 +    #Get the directional vector of the angle. 
 +    <-AngleRadians sin ->DirectionY 
 +    <-AngleRadians cos ->DirectionX 
 +     
 +    #Multiply the directional vector by power to increase the strength of the field. 
 +    <-DirectionY <-Power mul ->VectorUp 
 +    <-DirectionX <-Power mul ->VectorRight 
 +     
 +    #Spawn the fields in a radius relative to the center of the unit. 
 +    CurrentCoords ->Y ->X 
 +    <-Y <-RadiusY add 1 add <-Y <-RadiusY sub do 
 +        <-X <-RadiusX add 1 add <-X <-RadiusX sub do 
 +            I J <-VectorUp <-VectorRight SetFieldCell 
 +        loop 
 +    loop 
 +endonce
 </code> </code>
  
prpl/setfieldcell.1480721644.txt.gz · Last modified: 2025/02/14 14:56 (external edit)