Site Logo


  1. #TouhouDanmakufu[Single]
  2. #ScriptVersion[3] //This is required for ph3 scripts
  3. #Title["SampleA01"]
  4. #Text["SampleA01:Shooting Bullets Straight Down"]
  5. //Load the default shotsheet
  6. #include "script/default_system/Default_ShotConst.txt"
  7. //----------------------------------------------------
  8. //Declaring Global Variables
  9. //The variables declared here can be used throughout the entire script.
  10. //However, the variables declared here are static.
  11. //(They can be changed, but not by themselves as they are not in the main loop)
  12. //(As execution order cannot be guaranteed, random numbers cannot be used(?))
  13. //----------------------------------------------------
  14. let objEnemy; //Enemy object
  15. let frame = 0; //Counter for timing enemy movements.(Will keep increasing by one in @MainLoop)
  16. //----------------------------------------------------
  17. //Enemy movement
  18. //----------------------------------------------------
  19. @Event
  20. {
  21. alternative(GetEventType())
  22. case(EV_REQUEST_LIFE)
  23. {
  24. //The script asks for the enemy's life
  25. SetScriptResult(500); //Setting the enemy's life to 500
  26. }
  27. }
  28. @Initialize
  29. {
  30. //Creating and registering enemy objects
  31. objEnemy = ObjEnemy_Create(OBJ_ENEMY_BOSS);
  32. ObjEnemy_Regist(objEnemy);
  33. //Setting the enemy's image
  34. let imgExRumia = GetCurrentScriptDirectory() ~ "ExRumia.png"; //file path to enemy image
  35. ObjPrim_SetTexture(objEnemy, imgExRumia);
  36. //Setting the above image file as a texture to the enemy object(objEnemy)
  37. ObjSprite2D_SetSourceRect(objEnemy, 64, 1, 127, 64);
  38. //Setting the rectangle coordinates in the enemy image to use(Left, Top, Right, Bottom).
  39. ObjSprite2D_SetDestCenter(objEnemy);
  40. //Positioning the center of the rectangle(w/texture) at (0, 0) on the stage(top left corner).
  41. //Moving to the coordinate (cx, 60) in 60 frames
  42. let cx = GetStgFrameWidth() / 2;
  43. //defines the variable cx as the horizontal middle of the stage. (Stage width / 2)
  44. ObjMove_SetDestAtFrame(objEnemy, cx, 60, 60);
  45. }
  46. @MainLoop
  47. {
  48. //retrieving enemy coordinates
  49. let ex = ObjMove_GetX(objEnemy);
  50. let ey = ObjMove_GetY(objEnemy);
  51. if(frame == 60)
  52. {
  53. //executed when frame is equal to 60
  54. //・shoots a bullet straight down from the enemy's position
  55. //・speed: 3 pixels per frame
  56. //・angle: 90 (down) (0 = right, 180 = left, 270 = up)
  57. //・delay: 30 frames
  58. CreateShotA1(ex, ey, 3, 90, DS_BALL_S_RED, 30);
  59. frame = 0;
  60. //after the bullet is shot, frame is returned to 0 to build up to 60 again and fire another bullet.
  61. }
  62. //Setting the enemy hit box
  63. ObjEnemy_SetIntersectionCircleToShot(objEnemy, ex, ey, 32); //hitbox against player bullets. 32 is the radius.
  64. ObjEnemy_SetIntersectionCircleToPlayer(objEnemy, ex, ey, 24); //hitbox against the player. 24 is the radius.
  65. //adding +1 to frame. "frame++" is equivalent to "frame = frame + 1;" or "frame += 1;"
  66. frame++;
  67. //If the enemy's life is 0
  68. if(ObjEnemy_GetInfo(objEnemy, INFO_LIFE) <= 0)
  69. {
  70. //the enemy is killed immediately when life is 0
  71. //As this is a beginner sample script,
  72. //the script is ended immediately without waiting for an explosion effect
  73. Obj_Delete(objEnemy);
  74. CloseScript(GetOwnScriptID());
  75. return;
  76. }
  77. }