
#Title[ʏe1]
#Text[ʏe1]
#Player[FREE]
#ScriptVersion[2]

script_enemy_main{
     let csd = GetCurrentScriptDirectory;
        let gx = GetX;
        let gy = GetY;
        let gspeed = GetSpeed;
        let gangle = GetAngle;     
        let arg = GetArgument;
   let imgBOSS = csd~"img\character\dot_yukari.png";
   let wIni  = 60;
   let csd = GetCurrentScriptDirectory;
   let shotData = csd ~ "data_usershot.txt";
   let se1 = csd~ "bgm\arrow01.wav";
   let se2 = csd~ "bgm\eco02_a.wav";
   let se3 = csd~ "bgm\tm2_coin000.wav";
   let se4 = csd~ "bgm\countdown.wav";
    let effect = csd ~ "img\magic_circle\powercircle.png";
   let arrayL = [];
 let dif = GetCommonData("Dif");
   @Initialize{
           if(GetPlayerType == REIMU_A){SetLife(3500);}
            else{SetLife(3500);}
           SetTimer(60);
       SetDamageRate(80,30);
           SetInvincibility(120);
           SetGraphicRect(0*128,0,1*128,128);   
           SetMovePosition03(GetCenterX,GetClipMinY+100,20,20);
        SetAlpha(255);
           LoadGraphic(imgBOSS);
          LoadGraphic(effect);
          LoadUserShotData(shotData);
         LoadSE(se1);LoadSE(se2);LoadSE(se3);LoadSE(se4);
           TMain;
    }

   @MainLoop{
      if(OnEvent){break;}
           SetCollisionA(GetX, GetY, 24);
           SetCollisionB(GetX, GetY, 24);

         yield;
       }

   @DrawLoop{
         SetTexture(imgBOSS);  
        DrawGraphic(GetX,GetY);
     }

    @Finalize{
        DeleteGraphic(imgBOSS);
        DeleteGraphic(effect);
        DeleteSE(se1);DeleteSE(se2);DeleteSE(se3);DeleteSE(se4);           
     }
 
     task TMain{
          yield;
      Circle(40);
       wait(120);
    SetGraphicRect(0*128,2*128,1*128,3*128); 
        if(dif == 1){Shot;}
    else if(dif == 2){Shot2;}
        Count;
    }

      task Shot{
       loop{
        let delay = 20;
        let base = 90;
       let radius = 32;
       let way = 1;
         loop(20){
         loop(2){
         let x = GetX+offsetX(radius,base-10);
         let y = GetY+offsetY(radius,base-10);
         let x2 = GetX+offsetX(radius,190-base);
         let y2 = GetY+offsetY(radius,190-base);
         let v = 3;
         let vmax = v;
         let accel = 0;
         let color = 111;
         let angle = atan2(GetPlayerY-y,GetPlayerX-x);
         let angle2 = atan2(GetPlayerY-y2,GetPlayerX-x2);
       ascent(b in -way..way){
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v,angle+10*b,0,accel,vmax,color);
         FireShot(0);
        CreateShotA(1,x2,y2,delay); 
         SetShotDataA(1,0,v,angle2+10*b,0,accel,vmax,color);
         FireShot(1);
       }
        base -= 6;
        PlaySE(se1); 
        wait(6);
      }
         way += 0.9;
         radius += 6;
       }
      wait(60);
      Move;
     ascent(v in 1..4){
     let x = GetX; let y = GetY;
     let color = 142; delay = 0;
        ascent(w in 0..36){
       let angle = GetAngleToPlayer+5*v+10*w;
         CreateShot01(x,y,v,angle,color,delay);
         }
        }
       PlaySE(se3);
      wait(180);
    
      let delay = 20;
        let base = 90;
       let radius = 32;
       let way = 1;
         loop(20){
         loop(2){
         let x = GetX+offsetX(radius,base-10);
         let y = GetY+offsetY(radius,base-10);
         let x2 = GetX+offsetX(radius,190-base);
         let y2 = GetY+offsetY(radius,190-base);
         let v = 3;
         let vmax = v;
         let accel = 0;
         let color = 109;
         let angle = atan2(GetPlayerY-y,GetPlayerX-x);
         let angle2 = atan2(GetPlayerY-y2,GetPlayerX-x2);
       ascent(b in -way..way){
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v,angle-10*b,0,accel,vmax,color);
         FireShot(0);
        CreateShotA(1,x2,y2,delay); 
         SetShotDataA(1,0,v,angle2-10*b,0,accel,vmax,color);
         FireShot(1);
       }
        base += 6;
        PlaySE(se1); 
        wait(6);
      }
         way += 0.9;
         radius += 6;
       }
      wait(60);
      Move;
     ascent(v in 1..4){
     let x = GetX; let y = GetY;
     let color = 137; delay = 0;
        ascent(w in 0..36){
       let angle = GetAngleToPlayer+5*(v-1)+10*w;
         CreateShot01(x,y,v,angle,color,delay);
         }
        }
       PlaySE(se3);
      wait(180);

   ascent(c in 0..3){
        let color = 141+c;
        let delay = 30+30*c;
        let v = 3;
       let base = GetAngleToPlayer;
     ascent(a in 0..4){
         base += 90*a;
          ascent(b in -10..10){
            let angle = base + b*10+3*c;
         let x = GetX+offsetX(24,base+b/6);
         let y = GetY+offsetY(24,base+b/6); 
           CreateShot01(x,y,v,angle,color,delay);
          }
         }
       }
       PlaySE(se1);
      wait(180);
     }
    }


  task Shot2{
       loop{
        let delay = 20;
        let base = 90;
       let radius = 32;
       let way = 1;
         loop(20){
         loop(2){
         let x = GetX+offsetX(radius,base-10);
         let y = GetY+offsetY(radius,base-10);
         let x2 = GetX+offsetX(radius,190-base);
         let y2 = GetY+offsetY(radius,190-base);
         let v = 3.5;
         let vmax = v;
         let accel = 0;
         let color = 111;
         let angle = atan2(GetPlayerY-y,GetPlayerX-x);
         let angle2 = atan2(GetPlayerY-y2,GetPlayerX-x2);
       ascent(b in -way..way){
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v,angle+10*b,0,accel,vmax,color);
         FireShot(0);
        CreateShotA(1,x2,y2,delay); 
         SetShotDataA(1,0,v,angle2+10*b,0,accel,vmax,color);
         FireShot(1);
       }
        base -= 6;
        PlaySE(se1); 
        wait(6);
      }
         way += 1.4;
         radius += 6;
       }
      wait(60);
      Move;
   ascent(a in 0..3){
     ascent(v in 1..4){
     let x = GetX; let y = GetY;
     let color = 142; delay = 0;
        ascent(w in 0..36){
       let angle = GetAngleToPlayer+5*v+10*w;
         CreateShot02(x,y,v,angle,0.1,v+2*(a-1/2)+0.5,color,delay);
         }
        }
      }
       PlaySE(se3);
      wait(180);
    
      let delay = 20;
        let base = 90;
       let radius = 32;
       let way = 1;
         loop(20){
         loop(2){
         let x = GetX+offsetX(radius,base-10);
         let y = GetY+offsetY(radius,base-10);
         let x2 = GetX+offsetX(radius,190-base);
         let y2 = GetY+offsetY(radius,190-base);
         let v = 3.5;
         let vmax = v;
         let accel = 0;
         let color = 109;
         let angle = atan2(GetPlayerY-y,GetPlayerX-x);
         let angle2 = atan2(GetPlayerY-y2,GetPlayerX-x2);
       ascent(b in -way..way){
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v,angle-10*b,0,accel,vmax,color);
         FireShot(0);
        CreateShotA(1,x2,y2,delay); 
         SetShotDataA(1,0,v,angle2-10*b,0,accel,vmax,color);
         FireShot(1);
       }
        base += 6;
        PlaySE(se1); 
        wait(6);
      }
         way += 1.6;
         radius += 6;
       }
      wait(60);
      Move;
  ascent(a in 0..3){
     ascent(v in 1..4){
     let x = GetX; let y = GetY;
     let color = 137; delay = 0;
        ascent(w in 0..36){
       let angle = GetAngleToPlayer+5*(v-1)+10*w;
         CreateShot02(x,y,v,angle,0.1,v+(a-1/2)*2+0.5,color,delay);
         }
        }
     }
       PlaySE(se3);
      wait(180);
   ascent(c in 0..8){
        let color = 137+c;
        let delay = 10+10*c;
        let v = 5;
       let base = GetAngleToPlayer;
     ascent(a in 0..4){
         base += 90*a;
          ascent(b in -20..20){
            let angle = base + b*10+5*c;
         let x = GetX+offsetX(24,base+b/6);
         let y = GetY+offsetY(24,base+b/6); 
           CreateShot01(x,y,v,angle,color,delay);
          }
         }
       }
       PlaySE(se1); 
      wait(180);
     }
    }



     task Move{
        let x = rand(64,92);
        let y = rand(0,32);
        let v = 2;
        let xmin = GetClipMinX+64;
        let ymin = GetClipMinY+60;
        let xmax = GetClipMaxX-64;
        let ymax = GetCenterY-60;
        if(x>=GetX){SetGraphicRect(2*128,3*128,3*128,4*128);}
       else if(x<=GetX){SetGraphicRect(2*128,1*128,3*128,2*128);}
         SetMovePositionRandom01(x,y,v,xmin,ymin,xmax,ymax);
         wait(90);
         SetGraphicRect(0*128,2*128,1*128,3*128); 
         wait(90);
    }
       
      task Count{
        loop{
          if(GetTimer <= 10){PlaySE(se4);}
         wait(60);
        }
    }
     
   task Circle(size){
           let c= Obj_Create(OBJ_EFFECT);
             Obj_SetX(c,GetX);
             Obj_SetY(c,GetY);
             Obj_SetAngle(c,0);
             ObjEffect_SetAngle(c,0,0,0);
             ObjEffect_SetTexture(c,effect);
             ObjEffect_SetRenderState(c,ADD);
             ObjEffect_SetPrimitiveType(c,PRIMITIVE_TRIANGLEFAN);
             ObjEffect_SetLayer(c,0);
             ObjEffect_CreateVertex(c,62);
             ObjEffect_SetVertexXY(c,0,0,0);
             ObjEffect_SetVertexUV(c,0,128,128);
             ObjEffect_SetVertexColor(c,0,255,255,255,255);
             ObjEffect_SetScale(c,size/10,size/10);

            ascent(let i in 0..61){
                ObjEffect_SetVertexXY(c,i+1,cos(i*6)*20,sin(i*6)*20);
                ObjEffect_SetVertexUV(c,i+1,cos(i*6)*130+130,sin(i*6)*130+130);
                ObjEffect_SetVertexColor(c,i+1,255,255,255,255);
            }
       Spin;
       Up;
     task Spin{
      let h = 0;
         loop{
            Obj_SetX(c,GetX); Obj_SetY(c,GetY);
            ObjEffect_SetAngle(c,0,0,h);
            h += 8;
            wait(1);
           }
         }
       task Up{
            loop{
             ascent(a in 0..30){
            Obj_SetX(c,GetX); Obj_SetY(c,GetY);
            ObjEffect_SetScale(c,(size+a/5)/10,(size+a/5)/10);
            wait(1);
             }
            wait(10);
             descent(a in 0..30){
            Obj_SetX(c,GetX); Obj_SetY(c,GetY);
            ObjEffect_SetScale(c,(size+a/5)/10,(size+a/5)/10);
            wait(1);
             }
            wait(10);
           }
        }
    }

    function offsetX(radius,angle){
           return radius * cos(angle);
     }

        function offsetY(radius,angle){
            return radius * sin(angle);
     }           

       function move(f){
          SetMovePosition02(rand(GetClipMinX+60,GetClipMaxX-60),GetY+rand(-20,20),f);
     }
            
        function sc(r,g,b){
             SetShotColor(r,g,b);
     }

       sub setGraphicStop  { SetGraphicRect( 1, 1, 64, 64); }

       function wait(w){
                loop(w){yield;}
       }
}