
#Title[AXʏe1]
#Text[AXʏ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_alice.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\concentration.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(3000);}
            else{SetLife(3000);}
           SetTimer(60);
       SetDamageRate(100,20);
           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);
        if(dif == 1){Shot;}
     else if(dif == 2){Shot2;}
        Count;
    }

      task Shot{
       loop{
         loop(4){
     let way = 36;
       let base = GetAngleToPlayer;
        ascent(b in 0..6){
         ascent(a in 0..way){
           let radius = 0;
          let angle = base+360/way*a;
          let v = 4;
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 9;
          let delay = 0;
         let accel = -0.01;
         let vmin = 1;
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.1*b,angle+6*b,-0.1*b,accel,vmin,color);
         SetShotDataA(0,120,NULL,NULL,0,accel,vmin,color);
         FireShot(0);
          }
        }
   PlaySE(se1);
      wait(30);
        ascent(b in 0..6){
         ascent(a in 0..way){ 
       let radius = 0;
          let angle = base+360/way*a;
          let v = 4;
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 14;
          let delay = 0;
         let accel = -0.01;
         let vmin = 1;
        CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.1*b,angle-6*b,0.1*b,accel,vmin,color);
         SetShotDataA(0,120,NULL,NULL,0,accel,vmin,color);
         FireShot(0);
            }
          }
     PlaySE(se1);
        wait(30);
         }
      Move;
       wait(120);
       let way = 36;
       let base = GetAngleToPlayer;
        ascent(b in 0..12){
         ascent(a in 0..way){
           let radius = 0;
          let angle = base+360/way*a;
          let v = 2;
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 12;
          let delay = 5*b;
         let accel = 0;
         let vmin = 3;
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.01*b,angle,0.1*b,accel,vmin,color);
         SetShotDataA(0,60,NULL,NULL,0,accel,vmin,color);
         FireShot(0);
          }
        }
         ascent(b in 1..13){
         ascent(a in 0..way){
           let radius = 0;
          let angle = base+360/way*a;
          let v = 3;
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 11;
          let delay = 5*b;
         let accel = 0;
         let vmin = 3;
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.01*b,angle-6*b,b+1,accel,vmin,color);
         SetShotDataA(0,120,v,NULL,0,accel,vmin,color);
         FireShot(0);
          }
        }
    PlaySE(se1);
     Move;
       wait(240);
     }
    }

 task Shot2{
       loop{
         loop(6){
     let way = 36;
       let base = GetAngleToPlayer;
      ascent(c in 0..1){
        ascent(b in 0..7){
         ascent(a in 0..way){
           let radius = 0;
          let angle = base+360/way*a;
          let v = 4/(c+1);
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 9;
          let delay = 0;
         let accel = -0.01;
         let vmin = 1;
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.1*b,angle+6*b,-0.1*b/(c+1),accel,vmin,color);
         SetShotDataA(0,120,NULL,NULL,0,accel,vmin,color);
         FireShot(0);
          }
        }
     }
     PlaySE(se1);
      wait(20);
     ascent(c in 0..1){
        ascent(b in 0..7){
         ascent(a in 0..way){ 
       let radius = 0;
          let angle = base+360/way*a;
          let v = 4/(c+1);
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 14;
          let delay = 0;
         let accel = -0.01;
         let vmin = 1;
        CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.1*b,angle-6*b,0.1*b/(c+1),accel,vmin,color);
         SetShotDataA(0,120,NULL,NULL,0,accel,vmin,color);
         FireShot(0);
            }
          }
       }
     PlaySE(se1);
        wait(20);
         }
      Move;
       wait(120);
       let way = 36;
       let base = GetAngleToPlayer;
        ascent(b in 0..12){
         ascent(a in 0..way){
           let radius = 0;
          let angle = base+360/way*a;
          let v = 4;
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 12;
          let delay = 5*b;
         let accel = 0;
         let vmin = 3;
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.01*b,angle,-0.4*b+1,accel,vmin,color);
         SetShotDataA(0,60,NULL,NULL,0.2,accel,vmin,color);
         FireShot(0);
          }
        }
         ascent(b in 1..37){
         ascent(a in 0..way){
           let radius = 0;
          let angle = base+360/way*a;
          let v = 3+2/36*(b-1);
          let x = GetX+offsetX(radius,angle);
          let y = GetY+offsetY(radius,angle);
         let color = 11;
          let delay = 5*b;
         let accel = 0;
         let vmin = 3;
         CreateShotA(0,x,y,delay); 
         SetShotDataA(0,0,v-0.01*b,angle-6*b,-(b+1),accel,vmin,color);
         SetShotDataA(0,120,v,NULL,0,accel,vmin,color);
         FireShot(0);
          }
        }
  PlaySE(se1);
     Move;
       wait(360);
     }
    }

     task Move{
        let x = rand(64,64);
        let y = rand(16,32);
        let v = 2;
        let xmin = GetClipMinX+96;
        let ymin = GetClipMinY+60;
        let xmax = GetClipMaxX-96;
        let ymax = GetCenterY-60;
        if(x>=GetX){SetGraphicRect(1*128,1*128,2*128,2*128);}
       else if(x<=GetX){SetGraphicRect(1*128,1*128,2*128,2*128);}
         SetMovePositionRandom01(x,y,v,xmin,ymin,xmax,ymax);
         wait(90);
         SetGraphicRect(0*128,0,1*128,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;}
       }
}