View Single Post
  #2  
Old 03-15-2010, 07:21 AM
Cubical Cubical is offline
Banned
Join Date: Feb 2007
Posts: 1,348
Cubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant futureCubical has a brilliant future
Quote:
Originally Posted by adam View Post
This is a remake of fireworks I did in GS1 years ago, before I could go on Testbed to learn GS2. Please, don't state the obvious, that I didn't use the built in particle engine, I'll work on it later... maybe. But any other comments are welcome.
Also thanks to Door for helping me make it prettier. And all the Testbed Server people for allowing me to learn GS2 there. And for everybody else in IRC who logs into testbed just because I say help I need a body to test on!

PHP Code:
//NPC Created by Rogue Shadow(TCN)
//AIM: RogueTCN
//#CLIENTSIDE
function onCreated(){
  
this.rockets = new[0];
  
this.bursts = new[0];
  
this.trails = new[0];
  
this.grav 0.1;
}
function 
onWeaponFired(){
  
AddRocket(random(0,64),50);
}
function 
onTimeout(){
  for (
temp.i=0;temp.i<this.rockets.size();temp.i++){
    
AddTrail(this.rockets[temp.i].x-.5,this.rockets[temp.i].y,this.rockets[temp.i].vx,this.rockets[temp.i].vy);
    if (
this.rockets[temp.i].this.rockets[temp.i].ttl){
      
AddBurst(this.rockets[temp.i].x,this.rockets[temp.i].y,160);
    }
  }
  
this.rockets UpdateEverything(this.rockets);
  
this.bursts UpdateEverything(this.bursts);
  
this.trails UpdateEverything(this.trails);
  
temp.img DrawParticle(200,this.rockets);
  
temp.img DrawParticle(temp.img,this.bursts);
  
temp.img DrawParticle(temp.img,this.trails);
  if (
temp.img this.lastimg)hideimgs(temp.img,this.lastimg);
  
this.lastimg temp.img;
  
settimer(0.05);
}
function 
UpdateEverything(temp.objs){
  for (
temp.0;temp.temp.objs.size() ; temp.i++ ){
    if (
temp.objs[temp.i].temp.objs[temp.i].ttl){
      
temp.objs.delete(temp.i);
    }
  }
  for (
temp.rtemp.objs){
    
temp.r.vy += this.grav;
    
temp.r.+= temp.r.vx;
    
temp.r.+= temp.r.vy;
    
temp.r.++;
  }
  return 
temp.objs;
}
function 
DrawParticle(temp.img,temp.p){
  for (
temp.rtemp.p){
    if (
temp.r.alpha){
      
temp.1-(temp.r.t/temp.r.ttl);
    }else 
temp.1;
    
temp.showimg(temp.img,r.image,temp.r.x,temp.r.y);
    
changeimgcolors(temp.img,r.red,r.green,r.blue,temp.a);
    
changeimgzoom(temp.img,r.zoom);
    if (
r.rotation){
      
temp.rot getangle(r.vx,r.vy)+pi/2;
      
with (temp.j)rotation temp.rot;
    }
    if (
r.spin){
      
with (temp.j)rotation += temp.r.spin_spd;
    }
    
temp.img++;
  }
  return 
temp.img;
}
function 
AddBurst(nx,ny,num){
  
temp.ang 0
  
temp.kind int(random(0,1)+.5);
  
temp.color int(random(0,7)+.5);
  for (
temp.j=0;temp.num;temp.j++){
    
temp.= new TStaticVar(); 
    
temp.i.image "g4_particle_x.png";
    if (
temp.kind == 1)temp.spd random(.1,.8);
    else 
temp.spd = (temp.j%2=1) ? .2:.3;
    
temp.i.zoom .6;
    
temp.i.vx sin(temp.ang)*temp.spd;
    
temp.i.vy cos(temp.ang)*temp.spd -.7;
    
temp.ang+=0.1;
    
temp.i.nx;
    
temp.i.ny;
    
temp.i.ttl 30;
    
temp.i.0;
    if (
temp.color == 0){
      
temp.i.red 1;
      
temp.i.green 0;
      
temp.i.blue 0;
    }elseif(
temp.color == 1){
      
temp.i.red 0;
      
temp.i.green 1;
      
temp.i.blue 0;
    }elseif(
temp.color == 2){   
      
temp.i.red 0;
      
temp.i.green 0;
      
temp.i.blue 1;
    }elseif(
temp.color == 3){
      
temp.i.red 1;
      
temp.i.green 1;
      
temp.i.blue 0;
    }elseif(
temp.color == 4){        
      
temp.i.red 1;
      
temp.i.green 0;
      
temp.i.blue 1;
    }elseif(
temp.color == 5){ 
      
temp.i.red 0;
      
temp.i.green 1;
      
temp.i.blue 1;
    }elseif(
temp.color == 6){
      
temp.i.red 1;
      
temp.i.green 1;
      
temp.i.blue 1;
    }elseif(
temp.color == 7){
      
temp.i.red random(0,1);
      
temp.i.green random(0,1);
      
temp.i.blue random(0,1);
    }
    
temp.i.alpha true;
    
temp.i.i=this.bursts.size();
    
temp.i.spin true;
    
temp.i.spin_spd random(-.5,.5);
    
this.bursts.add(temp.i);
  }
  
play("fireworks_explode.wav");
}
function 
AddRocket(nx,ny){
  
temp.= new TStaticVar();
  
temp.r.image "np_barrel.png";
  
temp.r.nx;
  
temp.r.zoom .7;
  
temp.r.ny;
  
temp.r.vx random(-.5,.5);
  
temp.r.vy = -random(2,3);
  
temp.r.ttl 30;
  
temp.r.0;
  
temp.r.red random(.7,1);
  
temp.r.green random(.7,1);
  
temp.r.blue random(.7,1);
  
temp.r.rotation true;
  
temp.r.alpha false;
  
temp.r.this.rockets.size();
  
this.rockets.add(temp.r);
  
play("fireworks_launch.wav");
  
settimer(0.05);
}

function 
AddTrail(nx,ny,vx,vy){
  
temp.= new TStaticVar();
  
temp.r.nx;
  
temp.r.ny;
  
temp.r.vy = -random(.1,.5);
  
temp.r.vx = -random(.1,.5);
  
temp.r.ttl 10;
  
temp.r.0;
  
temp.r.red 1;
  
temp.r.blue 1;
  
temp.r.green 1;
  
temp.r.alpha true;
  
temp.r.rotation true;
  
temp.r.zoom .7;
  
temp.r.image "g4_particle_smoke.png";
  
temp.r.this.trails.size();
  
this.trails.add(temp.r);

That's pretty cool.
Reply With Quote