User Tools

Site Tools


prpl:isemergent

Differences

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

Link to this comparison view

Next revision
Previous revision
prpl:isemergent [2016/12/02 23:34] – external edit 127.0.0.1prpl:isemergent [2025/02/14 14:57] (current) – external edit 127.0.0.1
Line 1: Line 1:
-<- [[.:prplreference| PRPL reference]] <- [[.:prplreference#everything_else_2|Everything Else 2]]+<- [[.:prplreference| PRPL reference]] <- [[.:prplreference#particles|Particles]]
  
-=====  ISEMERGENT  =====+=====  IsEmergent  =====
  
 ^Arguments^Result^Notation^ ^Arguments^Result^Notation^
-| | | [ - ] |+pid bool | [ int bool ] |
  
  
 === Description === === Description ===
 +Emergent is implemented as a virtual particle. Virtual particles exists for hit detection purpouses, but they are not discoverable by functions like [[prpl:getparticlesinrange|GetParticlesInRange]].
 +
 +This function checks if the given pid is an virtual emergent particle.
 +
 +One way to get the emergent ID is to watch the current PID counter (by creating a particle on each frame) and calling this function (IsEmergent) to check if that particle is a virtual emergent particle.
 +
 +There are also virtual particles under each ship's hull (see [[prpl:ishull|IsHull]]).
  
 === Examples === === Examples ===
-<code> i1 = GetIntFromStack();  +<code prpl
- stack.Push(new Data(p != null ? 1 : 0));  +#init 
- +once 
 +    0 ->lastPID 
 +endonce 
 + 
 +#get the current pid 
 +0 0 0 0 0 0 CreateParticle ->pid 
 +<-pid DestroyParticle 
 + 
 +#count hull particles 
 +CreateList ->emergentParticles 
 +<-pid <-lastPid do 
 +    I IsEmergent if 
 +        <-emergentParticles I AppendToList 
 +    endif 
 +loop 
 + 
 +#update last Pid for the next frame 
 +<-pid ->lastPid 
 + 
 +#print the list of not empty 
 +<-emergentParticles GetListCount neq0 if 
 +    "Emergent created this frame:" <-emergentParticles Trace2 
 +endif
 </code> </code>
  
prpl/isemergent.1480721644.txt.gz · Last modified: 2025/02/14 14:56 (external edit)