Advertisement
salahzar

particles artistical

May 26th, 2012
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
LScript 13.93 KB | None | 0 0
  1. // SECTION ONE: APPEARANCE -- These settings affect how each particle LOOKS.
  2. integer      glow = TRUE;        // TRUE or FALSE(*)
  3. vector startColor = <1,1,1>;     // RGB color, black<0,0,0> to white<1,1,1>(*)
  4. vector   endColor = <1,1,0>;     //
  5. float  startAlpha = 2.0;         // 0.0 to 1.0(*), lower = more transparent
  6. float    endAlpha = 2.0;         //
  7. vector  startSize = <0,1.1,0>; // <0.04,0.04,0>(min) to <10,10,0>(max>, <1,1,0>(*)
  8. vector    endSize = <1.5,1.1,0>; // (Z part of vector is discarded)  
  9. string    texture = "pi_lightning2";          // Texture used for particles. Texture must be in prim's inventory.
  10.  
  11. // SECTION TWO: FLOW -- These settings affect how Many, how Quickly, and for how Long particles are created.
  12. //     Note,
  13. integer count = 3;    // Number of particles created per burst, 1(*) to 4096
  14. float    rate = 0.1;   // Delay between bursts of new particles, 0.0 to 60, 0.1(*)
  15. float     age = 1.0;   // How long each particle lives, 0.1 to 60, 10.0(*)
  16. float    life = 0.0;   // When to stop creating new particles. never stops if 0.0(*)
  17.  
  18. // SECTION THREE: PLACEMENT -- Where are new particles created, and what direction are they facing?
  19. float      radius = 0.25;        // 0.0(default) to 64?  Distance from Emitter where new particles are created.
  20. float  innerAngle = 0.1;  // "spread", for all ANGLE patterns, 0(default) to PI
  21. float  outerAngle = 0;        // "tilt", for ANGLE patterns,  0(default) to TWO_PI, can use PI_BY_TWO or PI as well.
  22. integer   pattern = PSYS_SRC_PATTERN_ANGLE; // Choose one of the following:
  23.                 // PSYS_SRC_PATTERN_EXPLODE (sends particles in all directions)
  24.                 // PSYS_SRC_PATTERN_DROP  (ignores minSpeed and maxSpeed.  Don't bother with count>1 )
  25.                 // PSYS_SRC_PATTERN_ANGLE_CONE (set innerangle/outerange to make rings/cones of particles)
  26.                 // PSYS_SRC_PATTERN_ANGLE (set innerangle/outerangle to make flat fanshapes of particles)
  27. vector      omega = <0,0,0>; // How much to rotate the emitter around the <X,Y,Z> axises. <0,0,0>(*)
  28.                              // Warning, there's no way to RESET the emitter direction once you use Omega!!
  29.                              // You must attach the script to a new prim to clear the effect of omega.
  30.  
  31. // SECTION FOUR: MOVEMENT -- How do the particles move once they're created?
  32. integer followSource = FALSE;   // TRUE or FALSE(*), Particles move as the emitter moves, (TRUE disables radius!)
  33. integer    followVel = TRUE;    // TRUE or FALSE(*), Particles rotate towards their direction
  34. integer         wind = FALSE;   // TRUE or FALSE(*), Particles get blown away by wind in the sim
  35. integer       bounce = FALSE;   // TRUE or FALSE(*), Make particles bounce on Z altitude of emitter
  36. float       minSpeed = 0.3;     // 0.01 to ? Min speed each particle is spit out at, 1.0(*)
  37. float       maxSpeed = 0.2;     // 0.01 to ? Max speed each particle is spit out at, 1.0(*)
  38. vector          push = <0,0,0>; // Continuous force pushed on particles, use small settings for long lived particles
  39. key           target = "self";      // Select a target for particles to arrive at when they die
  40.                                 // can be "self" (emitter), "owner" (you), "" or any prim/persons KEY.
  41. integer interpColor = TRUE;     // Go from start to end color
  42. integer interpSize = TRUE;      // Go from start to end size
  43.  
  44. // SECTION FIVE:   Ama's "Create Short Particle Settings List"
  45. integer  enableoutput = FALSE; // If this is TRUE, clicking on your emitter prim will cause it to speak
  46.                 // very terse "shorthand" version of your particle settings.  You can cut'n'paste
  47.                 // this abbreviated version into a call to llParticleSystem([ ]); in another script.
  48.                 // Pros:  Takes up far less scripting space, letting you focus on the rest of your code.
  49.                 // Cons:  makes tune your settings afterwards rather awkward
  50.  
  51. integer flags;
  52.  
  53. updateParticles()
  54. {
  55.     startColor = <llFrand(1.0),llFrand(1.0),llFrand(1.0)>;
  56.     endColor = <llFrand(1.0),llFrand(1.0),llFrand(1.0)>;
  57.         flags = 0;
  58.         if (target == "owner") target = llGetOwner();
  59.         if (target == "self") target = llGetKey();
  60.         if (glow) flags = flags | PSYS_PART_EMISSIVE_MASK;
  61.         if (bounce) flags = flags | PSYS_PART_BOUNCE_MASK;
  62.         if (interpColor) flags = flags | PSYS_PART_INTERP_COLOR_MASK;
  63.         if (interpSize) flags = flags | PSYS_PART_INTERP_SCALE_MASK;
  64.         if (wind) flags = flags | PSYS_PART_WIND_MASK;
  65.         if (followSource) flags = flags | PSYS_PART_FOLLOW_SRC_MASK;
  66.         if (followVel) flags = flags | PSYS_PART_FOLLOW_VELOCITY_MASK;
  67.         if (target != "") flags = flags | PSYS_PART_TARGET_POS_MASK;
  68.  
  69.         llParticleSystem([  PSYS_PART_MAX_AGE,age,
  70.                             PSYS_PART_FLAGS,flags,
  71.                             PSYS_PART_START_COLOR, startColor,
  72.                             PSYS_PART_END_COLOR, endColor,
  73.                             PSYS_PART_START_SCALE,startSize,
  74.                             PSYS_PART_END_SCALE,endSize,
  75.                             PSYS_SRC_PATTERN, pattern,
  76.                             PSYS_SRC_BURST_RATE,rate,
  77.                             PSYS_SRC_ACCEL, push,
  78.                             PSYS_SRC_BURST_PART_COUNT,count,
  79.                             PSYS_SRC_BURST_RADIUS,radius,
  80.                             PSYS_SRC_BURST_SPEED_MIN,minSpeed,
  81.                             PSYS_SRC_BURST_SPEED_MAX,maxSpeed,
  82.                             PSYS_SRC_TARGET_KEY,target,
  83.                             PSYS_SRC_INNERANGLE,innerAngle,
  84.                             PSYS_SRC_OUTERANGLE,outerAngle,
  85.                             PSYS_SRC_OMEGA, omega,
  86.                             PSYS_SRC_MAX_AGE, life,
  87.                             PSYS_SRC_TEXTURE, texture,
  88.                             PSYS_PART_START_ALPHA, startAlpha,
  89.                             PSYS_PART_END_ALPHA, endAlpha
  90.                                 ]);
  91. }
  92.  
  93. string smoke_texture = "pi_lightning2"; // qui ho modificato prima c'era = texture
  94.  
  95. MakeSmoke(string xTexture)                //This is the function that actually starts the particle system.
  96. {                
  97.     llParticleSystem([                   //KPSv1.0  
  98.         PSYS_PART_FLAGS , 0 //Comment out any of the following masks to deactivate them
  99.     //| PSYS_PART_BOUNCE_MASK           //Bounce on object's z-axis
  100.     //| PSYS_PART_WIND_MASK             //Particles are moved by wind
  101.     | PSYS_PART_INTERP_COLOR_MASK       //Colors fade from start to end
  102.     | PSYS_PART_INTERP_SCALE_MASK       //Scale fades from beginning to end
  103.     //| PSYS_PART_FOLLOW_SRC_MASK         //Particles follow the emitter
  104.     //| PSYS_PART_FOLLOW_VELOCITY_MASK    //Particles are created at the velocity of the emitter
  105.     //| PSYS_PART_TARGET_POS_MASK       //Particles follow the target
  106.     | PSYS_PART_EMISSIVE_MASK           //Particles are self-lit (glow)
  107.     //| PSYS_PART_TARGET_LINEAR_MASK    //Undocumented--Sends particles in straight line?
  108.     ,
  109.    
  110.     //PSYS_SRC_TARGET_KEY , NULL_KEY,   //Key of the target for the particles to head towards
  111.                                                 //This one is particularly finicky, so be careful.
  112.     //Choose one of these as a pattern:
  113.     //PSYS_SRC_PATTERN_DROP                 Particles start at emitter with no velocity
  114.     //PSYS_SRC_PATTERN_EXPLODE              Particles explode from the emitter
  115.     //PSYS_SRC_PATTERN_ANGLE                Particles are emitted in a 2-D angle
  116.     //PSYS_SRC_PATTERN_ANGLE_CONE           Particles are emitted in a 3-D cone
  117.     //PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY     Particles are emitted everywhere except for a 3-D cone
  118.    
  119.     PSYS_SRC_PATTERN,           PSYS_SRC_PATTERN_ANGLE_CONE
  120.     ,PSYS_SRC_TEXTURE,           xTexture                 //UUID of the desired particle texture, or inventory name
  121.     ,PSYS_SRC_MAX_AGE,           0.0                //Time, in seconds, for particles to be emitted. 0 = forever
  122.     ,PSYS_PART_MAX_AGE,          10.0                //Lifetime, in seconds, that a particle lasts
  123.     ,PSYS_SRC_BURST_RATE,        0.2               //How long, in seconds, between each emission
  124.     ,PSYS_SRC_BURST_PART_COUNT,  15                  //Number of particles per emission
  125.     ,PSYS_SRC_BURST_RADIUS,      0.1                //Radius of emission
  126.     ,PSYS_SRC_BURST_SPEED_MIN,   0.1                //Minimum speed of an emitted particle
  127.     ,PSYS_SRC_BURST_SPEED_MAX,   0.3                //Maximum speed of an emitted particle
  128.     ,PSYS_SRC_ACCEL,             <0.0,0.0,0.01>     //Acceleration of particles each second
  129.     ,PSYS_PART_START_COLOR,      <1.0,1.0,1.0>      //Starting RGB color
  130.     ,PSYS_PART_END_COLOR,        <1.0,1.0,1.0>      //Ending RGB color, if INTERP_COLOR_MASK is on
  131.     ,PSYS_PART_START_ALPHA,      0.4                //Starting transparency, 1 is opaque, 0 is transparent.
  132.     ,PSYS_PART_END_ALPHA,        0.0                //Ending transparency
  133.     ,PSYS_PART_START_SCALE,      <0.1,0.1,1.0>      //Starting particle size
  134.     ,PSYS_PART_END_SCALE,        <1.0,1.0,1.0>      //Ending particle size, if INTERP_SCALE_MASK is on
  135.     ,PSYS_SRC_ANGLE_BEGIN,       0.1                 //Inner angle for ANGLE patterns
  136.     ,PSYS_SRC_ANGLE_END,         0.11                 //Outer angle for ANGLE patterns
  137.     ,PSYS_SRC_OMEGA,             <0.0,0.0,0.0>       //Rotation of ANGLE patterns, similar to llTargetOmega()
  138.             ]);
  139. }
  140.  
  141. SprayParticles(string xTexture)                //This is the function that actually starts the particle system.
  142. {  
  143.     llParticleSystem([                   //KPSv1.0  
  144.         PSYS_PART_FLAGS , 0 //Comment out any of the following masks to deactivate them
  145.     //| PSYS_PART_BOUNCE_MASK           //Bounce on object's z-axis
  146.     //| PSYS_PART_WIND_MASK             //Particles are moved by wind
  147.     | PSYS_PART_INTERP_COLOR_MASK       //Colors fade from start to end
  148.     | PSYS_PART_INTERP_SCALE_MASK       //Scale fades from beginning to end
  149.     //| PSYS_PART_FOLLOW_SRC_MASK         //Particles follow the emitter
  150.     //| PSYS_PART_FOLLOW_VELOCITY_MASK    //Particles are created at the velocity of the emitter
  151.     | PSYS_PART_TARGET_POS_MASK       //Particles follow the target
  152.     | PSYS_PART_EMISSIVE_MASK           //Particles are self-lit (glow)
  153.     //| PSYS_PART_TARGET_LINEAR_MASK    //Undocumented--Sends particles in straight line?
  154.     ,
  155.    
  156.     PSYS_SRC_TARGET_KEY , llGetKey(),   //Key of the target for the particles to head towards
  157.                                                 //This one is particularly finicky, so be careful.
  158.     //Choose one of these as a pattern:
  159.     //PSYS_SRC_PATTERN_DROP                 Particles start at emitter with no velocity
  160.     //PSYS_SRC_PATTERN_EXPLODE              Particles explode from the emitter
  161.     //PSYS_SRC_PATTERN_ANGLE                Particles are emitted in a 2-D angle
  162.     //PSYS_SRC_PATTERN_ANGLE_CONE           Particles are emitted in a 3-D cone
  163.     //PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY     Particles are emitted everywhere except for a 3-D cone
  164.    
  165.     PSYS_SRC_PATTERN,           PSYS_SRC_PATTERN_EXPLODE
  166.    
  167.     ,PSYS_SRC_TEXTURE,           xTexture                 //UUID of the desired particle texture, or inventory name
  168.     ,PSYS_SRC_MAX_AGE,           0.0                //Time, in seconds, for particles to be emitted. 0 = forever
  169.     ,PSYS_PART_MAX_AGE,          60.0                //Lifetime, in seconds, that a particle lasts
  170.     ,PSYS_SRC_BURST_RATE,        0.02               //How long, in seconds, between each emission
  171.     ,PSYS_SRC_BURST_PART_COUNT,  6                  //Number of particles per emission
  172.     ,PSYS_SRC_BURST_RADIUS,      0.2                //Radius of emission
  173.     ,PSYS_SRC_BURST_SPEED_MIN,   0.9                //Minimum speed of an emitted particle
  174.     ,PSYS_SRC_BURST_SPEED_MAX,   1.8                //Maximum speed of an emitted particle
  175.     ,PSYS_SRC_ACCEL,             <0.0,0.0,0.0>     //Acceleration of particles each second
  176.     ,PSYS_PART_START_COLOR,      <llFrand(1.0),llFrand(1.0),llFrand(1.0)>      //Starting RGB color
  177.     ,PSYS_PART_END_COLOR,        <llFrand(1.0),llFrand(1.0),llFrand(1.0)>      //Ending RGB color, if INTERP_COLOR_MASK is on
  178.     ,PSYS_PART_START_ALPHA,      0.4                //Starting transparency, 1 is opaque, 0 is transparent.
  179.     ,PSYS_PART_END_ALPHA,        0.0                //Ending transparency
  180.     ,PSYS_PART_START_SCALE,      <10.0, 10.0, 10.0>      //Starting particle size
  181.     ,PSYS_PART_END_SCALE,        <0,0,0.0>      //Ending particle size, if INTERP_SCALE_MASK is on
  182.     ,PSYS_SRC_ANGLE_BEGIN,       PI                 //Inner angle for ANGLE patterns
  183.     ,PSYS_SRC_ANGLE_END,         PI                 //Outer angle for ANGLE patterns
  184.     ,PSYS_SRC_OMEGA,             <0.0,5.0,5.0>       //Rotation of ANGLE patterns, similar to llTargetOmega()
  185.             ]);
  186. }
  187.  
  188.  
  189. default
  190. {
  191.     state_entry()
  192.     {
  193.         updateParticles();
  194.         llSetTimerEvent(0.2);
  195.         llListen(0, "", llGetOwner(), "");
  196.     }
  197.     timer()
  198.     {
  199.         updateParticles();
  200.     }
  201.     touch(integer num_detected)
  202.     {
  203.         state default2;
  204.     }
  205.     listen(integer channel, string name, key id, string message)
  206.     {
  207.         if(llToLower(message) == "staroff")
  208.         {
  209.             state off;
  210.         }
  211.     }
  212. }
  213.  
  214. state default2
  215. {
  216.     state_entry()
  217.     {
  218.         SprayParticles(smoke_texture);
  219.         llSetTimerEvent(15.0);
  220.         llListen(0, "", llGetOwner(), "");
  221.     }
  222.     timer()
  223.     {
  224.         state default;
  225.     }
  226.     touch(integer num_detected)
  227.     {
  228.         state default;
  229.     }
  230.     listen(integer channel, string name, key id, string message)
  231.     {
  232.         if(llToLower(message) == "staroff")
  233.         {
  234.             state off;
  235.         }
  236.     }  
  237. }
  238. state off
  239. {
  240.     state_entry()
  241.     {
  242.         llParticleSystem([]);
  243.         llListen(0, "", llGetOwner(), "");
  244.     }
  245.     listen(integer channel, string name, key id, string message)
  246.     {
  247.         if(llToLower(message) == "staron")
  248.         {
  249.             state default;
  250.         }
  251.     }
  252. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement