QB64.org Forum

Active Forums => Programs => Topic started by: johnno56 on December 06, 2021, 02:25:21 pm

Title: 1945
Post by: johnno56 on December 06, 2021, 02:25:21 pm
Bplus,

Here is the QB64 conversion of Naalaa's 1945. It is not optimised. Just concentrated on getting to work. I have also included the '1945.txt' Naalaa listing as well. No. Your 'Accuracy' text formatting has not been applied... lol

Let me know what you think? Suggestions for improvement are always appreciated... and in my case, expected... lol

J
 
 [ This attachment cannot be displayed inline in 'Print Page' view ]  

Title: Re: 1945
Post by: bplus on December 06, 2021, 03:35:20 pm
@johnno56  Cool! I'll give it the old look see.
Title: Re: 1945
Post by: bplus on December 06, 2021, 04:48:02 pm
Every once and awhile I loose my plane and the new planes coming down just flash for moment and disappear while the ocean continues down as normal? Not sure what causes problem but some games play normal.

I found full screen much more enjoyable and I reworked the Splash / Menu screen:
Code: QB64: [Select]
  1. xmax = 640
  2. ymax = 480
  3. _Title "1945"
  4.  
  5. Screen _NewImage(xmax, ymax, 32)
  6.  
  7. '   ARRAYS
  8. Dim backgroundX(21)
  9. Dim backgroundY(16)
  10. Dim transitionX(21)
  11. Dim transitionY(16)
  12. Dim enemyX(5)
  13. Dim enemyY(5)
  14. Dim superenemyX(5)
  15. Dim superenemyY(5)
  16. Dim decision(2)
  17. Dim enemybulletX(2)
  18. Dim enemybulletY(2)
  19. Dim enemyshot(2)
  20. Dim islandImage(3)
  21. Dim islandX(3)
  22. Dim islandY(3)
  23. Dim img(34)
  24.  
  25.  
  26.  
  27. trans = _RGBA32(0, 0, 0, 0)
  28.  
  29. width0 = 65
  30. height0 = 65
  31. width3 = 9
  32. height3 = 19
  33. width5 = 32
  34. height5 = 32
  35. width27 = 5
  36. height27 = 5
  37. width28 = 94
  38. height28 = 31
  39. width29 = 6
  40. height29 = 11
  41. width30 = 278
  42. height30 = 141
  43. width32 = 115
  44. height32 = 58
  45.  
  46. quit = 0
  47. dead = false
  48. hit = 0
  49.  
  50. '   LOAD ASSETS
  51. '   ===========
  52.  
  53. '   Images
  54. '
  55. img(0) = _LoadImage("data/plane1.png")
  56. img(1) = _LoadImage("data/plane2.png")
  57. img(2) = _LoadImage("data/plane3.png")
  58. img(3) = _LoadImage("data/bullet.png")
  59. img(4) = _LoadImage("data/sea.png")
  60. img(5) = _LoadImage("data/enemy1.png")
  61. img(6) = _LoadImage("data/enemy2.png")
  62. img(7) = _LoadImage("data/enemy3.png")
  63. img(8) = _LoadImage("data/explosion1.png")
  64. img(9) = _LoadImage("data/explosion2.png")
  65. img(10) = _LoadImage("data/explosion3.png")
  66. img(11) = _LoadImage("data/explosion4.png")
  67. img(12) = _LoadImage("data/explosion5.png")
  68. img(13) = _LoadImage("data/explosion6.png")
  69. img(14) = _LoadImage("data/bigexplosion1.png")
  70. img(15) = _LoadImage("data/bigexplosion2.png")
  71. img(16) = _LoadImage("data/bigexplosion3.png")
  72. img(17) = _LoadImage("data/bigexplosion4.png")
  73. img(18) = _LoadImage("data/bigexplosion5.png")
  74. img(19) = _LoadImage("data/bigexplosion6.png")
  75. img(20) = _LoadImage("data/bigexplosion7.png")
  76. img(21) = _LoadImage("data/island1.png")
  77. img(22) = _LoadImage("data/island2.png")
  78. img(23) = _LoadImage("data/island3.png")
  79. img(24) = _LoadImage("data/superenemy1.png")
  80. img(25) = _LoadImage("data/superenemy2.png")
  81. img(26) = _LoadImage("data/superenemy3.png")
  82. img(27) = _LoadImage("data/enemybullet.png")
  83. img(28) = _LoadImage("data/menu.png")
  84. img(29) = _LoadImage("data/arrow.png")
  85. img(30) = _LoadImage("data/biglogo.png")
  86. img(31) = _LoadImage("data/life.png")
  87. img(32) = _LoadImage("data/logo.png")
  88. img(33) = _LoadImage("data/paused.png")
  89. img(34) = _LoadImage("data/gameover.png")
  90.  
  91. '   Sounds
  92. '
  93. shoot = _SndOpen("data/shoot.wav")
  94. explosion = _SndOpen("data/explosion.wav")
  95. collide = _SndOpen("data/collide.wav")
  96. plane_shot = _SndOpen("data/plane_shot.wav")
  97.  
  98. '   Fonts
  99. '
  100. arial14 = _LoadFont("data/arial.ttf", 14)
  101. War60 = _LoadFont("data/armalite.ttf", 60)
  102. War12 = _LoadFont("data/armalite.ttf", 12)
  103.  
  104. '   TILING THE BACKGROUND
  105. '   =====================
  106. 'backgroundX((640 / 32) + 1)
  107. 'backgroundY((480 / 32) + 1)
  108. 'transitionX((640 / 32) + 1)
  109. 'transitionY((480 / 32) + 1)
  110. For i = 0 To 640 / 32
  111.     backgroundX(i) = i * 32
  112.     transitionX(i) = i * 32
  113.     For a = 0 To 480 / 32
  114.         backgroundY(a) = a * 32
  115.         transitionY(a) = a * 32
  116.     Next
  117.  
  118.  
  119. '   A GAME MENU TO START WITH
  120. '   =========================
  121. menu = 0
  122. Color _RGB32(150, 0, 0)
  123.     Cls
  124.  
  125.  
  126.     '_PutImage ((640 - width30) / 2, 5), img(30)
  127.     _PutImage , img(30) ' full screen image
  128.  
  129.     If menu = 0 Then
  130.         _Font War60
  131.         Color _RGB32(255, 255, 255)
  132.         centerText 0, _Width, ymax * .6, "Play Game"
  133.         Color _RGB32(70, 0, 0)
  134.         _Font War12
  135.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  136.     Else
  137.         _Font War12
  138.         Color _RGB32(70, 0, 0)
  139.         centerText 0, _Width, ymax * .6, "Play Game"
  140.         _Font War60
  141.         Color _RGB32(255, 255, 255)
  142.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  143.     End If
  144.  
  145.     '_PutImage ((640 - width28) / 2, height30 + 30), img(28)
  146.     '_PutImage (((640 - width28) / 2) - width29, height30 + (30 + menu * 19)), img(29)
  147.     k& = _KeyHit
  148.     If k& = (18432) Then
  149.         menu = menu - 1
  150.     End If
  151.     If k& = (20480) Then
  152.         menu = menu + 1
  153.     End If
  154.  
  155.     If menu > 1 Then
  156.         menu = 0
  157.     End If
  158.     If menu < 0 Then
  159.         menu = 1
  160.     End If
  161.  
  162.     If _KeyDown(32) And menu = 0 Then
  163.         Exit Do
  164.     End If
  165.     If _KeyDown(32) And menu = 1 Then
  166.         For i = 0 To 640 / 32
  167.             For z = 0 To 480 / 32
  168.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  169.                 _Display
  170.                 _Limit 300
  171.             Next
  172.         Next
  173.         _PutImage (0, 0), img(34)
  174.         _Display
  175.         _Delay 1
  176.         System: 'ExitGame()
  177.     End If
  178.     _Display
  179.     _Limit 20
  180.  
  181. _Font arial14
  182. For i = 0 To 640 / 32
  183.     For z = 0 To 480 / 32
  184.         _PutImage (transitionX(i), transitionY(z)), img(4)
  185.         _Display
  186.         _Delay 0.01
  187.     Next
  188.  
  189. '   INITIALIZING VARIABLES
  190. '   =================================
  191. frame = 0
  192. explo_frame = 0
  193. bigexplo_frame = 0
  194. bigexplox = -70
  195. bigexploy = -70
  196. explo2_frame = 0
  197. speed = 6
  198. scrollspeed = 1
  199. planex = 320
  200. planey = 480 - 128
  201. enemyshot(0) = 0
  202. enemyshot(1) = 0
  203. bulletx = -30
  204. bullety = -30
  205. shot = 0
  206. explox = -30
  207. exploy = -30
  208. explo2x = -30
  209. explo2y = -30
  210. score = 0
  211. lives = 3
  212. health = 100
  213. bullseye = 1
  214. shots_fired = 1
  215. bigexploactive = 0
  216.  
  217. '   SETTING THE POSITIONS OF THE ENEMY PLANES
  218. '   =========================================
  219. For i = 0 To 4
  220.     enemyX(i) = Int(Rnd * 608)
  221.     enemyY(i) = 0 - Int(Rnd * 480) - 32
  222. For i = 0 To 1
  223.     superenemyX(i) = Int(Rnd * 608)
  224.     superenemyY(i) = 0 - Int(Rnd * 480) - 32
  225.     enemybulletX(i) = superenemyX(i) + 13
  226.     enemybulletY(i) = superenemyY(i) + 17
  227.  
  228. '   SETTING THE POSITIONS AND STARTING IMAGES OF THE ISLANDS
  229. '   ========================================================
  230. For i = 0 To 2
  231.     islandX(i) = Int(Rnd * 576)
  232.     islandY(i) = 0 - Int(Rnd * 480)
  233.     islandImage(i) = img(i + 21)
  234.  
  235. '   THE 'ACTUAL' GAME LOOP
  236. '   ======================
  237.     If quit = 1 Then
  238.         For i = 0 To 640 / 32
  239.             For z = 0 To 480 / 32
  240.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  241.                 _Display
  242.                 _Delay 0.01
  243.             Next
  244.         Next
  245.         _PutImage (0, 0), img(34)
  246.         _Display
  247.         _Delay 4
  248.         Exit Do
  249.     End If
  250.  
  251.     '   CLEARING THE SCREEN
  252.     '   ===================
  253.     Cls
  254.  
  255.     '   MOVING THE PLAYER WITH THE ARROW KEYS
  256.     '   =====================================
  257.     '   OH, AND SHOOTING WITH THE SPACEBAR
  258.     '   ==================================
  259.     If _KeyDown(27) Then
  260.         quit = 1
  261.     End If
  262.     If _KeyDown(18432) Then
  263.         planey = planey - speed
  264.     End If
  265.     If _KeyDown(20480) Then
  266.         planey = planey + 4
  267.     End If
  268.     If _KeyDown(19200) Then
  269.         planex = planex - speed
  270.     End If
  271.     If _KeyDown(19712) Then
  272.         planex = planex + speed
  273.     End If
  274.     If _KeyDown(32) And shot = 0 Then
  275.         _SndPlay (shoot)
  276.         bulletx = planex + 27 ' 17
  277.         bullety = planey + 5
  278.         shot = 1
  279.         shots_fired = shots_fired + 1
  280.     End If
  281.  
  282.     '   MOVING THE ENEMY PLANES
  283.     '   =======================
  284.     For z = 0 To 4
  285.         If enemyY(z) > 480 Then
  286.             enemyX(z) = Int(Rnd * 608)
  287.             enemyY(z) = 0 - Int(Rnd * 480)
  288.         Else
  289.             enemyY(z) = enemyY(z) + speed
  290.         End If
  291.     Next
  292.     For z = 0 To 1
  293.         If superenemyY(z) > 480 Then
  294.             superenemyX(z) = Int(Rnd * 608)
  295.             superenemyY(z) = 0 - Int(Rnd * 480)
  296.         Else
  297.             superenemyY(z) = superenemyY(z) + speed
  298.         End If
  299.     Next
  300.  
  301.     '   MOVING THE ISLANDS
  302.     '   ==================
  303.     For z = 0 To 2
  304.         If islandY(z) > 480 Then
  305.             islandX(z) = Int(Rnd * 576)
  306.             islandY(z) = 0 - Int(Rnd * 480)
  307.             islandImage(z) = img(Int(Rnd * 3) + 21)
  308.         Else
  309.             islandY(z) = islandY(z) + 3
  310.         End If
  311.     Next
  312.  
  313.     '   CHECKING WHEN WE BEAT OR BEING BEATEN
  314.     '   =====================================
  315.     For t = 0 To 4
  316.         '   Collision with enemy?
  317.         collision planex, planey, width0, height0, enemyX(t), enemyY(t), width5, height5
  318.         If hit = 1 Then
  319.             'collision(r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  320.             If explox > 0 Then
  321.                 explo2x = enemyX(t)
  322.                 explo2y = enemyY(t)
  323.             Else
  324.                 explox = enemyX(t)
  325.                 exploy = enemyY(t)
  326.             End If
  327.             _SndPlay (explosion)
  328.             enemyX(t) = Int(Rnd * 608)
  329.             enemyY(t) = 0 - Int(Rnd * 480)
  330.             health = health - 25
  331.             If health <= 0 Then
  332.                 bigexploactive = 1
  333.                 bigexplox = planex
  334.                 bigexploy = planey
  335.                 planex = -70
  336.                 planey = -70
  337.             End If
  338.             enemyX(t) = Int(Rnd * 608)
  339.             enemyY(t) = 0 - Int(Rnd * 480)
  340.         End If
  341.         If shot = 1 Then
  342.             '   Collision with player bullet and enemy
  343.             collision bulletx, bullety, width3, height3, enemyX(t), enemyY(t), width5, height5
  344.             If hit = 1 Then
  345.                 If explox > 0 Then
  346.                     explo2x = enemyX(t)
  347.                     explo2y = enemyY(t)
  348.                 Else
  349.                     explox = enemyX(t)
  350.                     exploy = enemyY(t)
  351.                 End If
  352.                 _SndPlay (explosion)
  353.                 enemyX(t) = Int(Rnd * 608)
  354.                 enemyY(t) = 0 - Int(Rnd * 480)
  355.                 bulletx = -30
  356.                 bullety = -30
  357.                 score = score + 50
  358.                 bullseye = bullseye + 1
  359.             End If
  360.         End If
  361.     Next
  362.     For t = 0 To 1
  363.         '   Collision with player and superenemy
  364.         collision planex, planey, width0, height0, superenemyX(t), superenemyY(t), width5, height5
  365.         If hit = 1 Then
  366.             If explox > 0 Then
  367.                 explo2x = enemyX(t)
  368.                 explo2y = enemyY(t)
  369.             Else
  370.                 explox = enemyX(t)
  371.                 exploy = enemyY(t)
  372.             End If
  373.             _SndPlay (explosion)
  374.             enemyX(t) = Int(Rnd * 608)
  375.             enemyY(t) = 0 - Int(Rnd * 480)
  376.             health = health - 25
  377.             If health <= 0 Then
  378.                 bigexploactive = 1
  379.                 bigexplox = planex
  380.                 bigexploy = planey
  381.                 planex = -70
  382.                 planey = -70
  383.             End If
  384.             enemyX(t) = Int(Rnd * 608)
  385.             enemyY(t) = 0 - Int(Rnd * 480)
  386.         End If
  387.         '   Collision with player bullet and superenemy
  388.         collision bulletx, bullety, width3, height3, superenemyX(t), superenemyY(t), width5, height5
  389.         If hit = 1 Then
  390.             If explox > 0 Then
  391.                 explo2x = superenemyX(t)
  392.                 explo2y = superenemyY(t)
  393.             Else
  394.                 explox = superenemyX(t)
  395.                 exploy = superenemyY(t)
  396.             End If
  397.             _SndPlay (explosion)
  398.             superenemyX(t) = Int(Rnd * 608)
  399.             superenemyY(t) = 0 - Int(Rnd * 480)
  400.             bulletx = -30
  401.             bullety = -30
  402.             score = score + 100
  403.             bullseye = bullseye + 1
  404.         End If
  405.     Next
  406.     For t = 0 To 1
  407.         '   Collision with player and enemy bullet
  408.         If enemyshot(t) = 1 Then
  409.             collision planex, planey, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  410.             If hit = 1 Then
  411.                 health = health - 10
  412.                 If health <= 0 Then
  413.                     bigexploactive = 1
  414.                     bigexplox = planex
  415.                     bigexploy = planey
  416.                     bulletx = -30
  417.                     bullety = -30
  418.                 End If
  419.                 _SndPlay (explosion)
  420.                 If explox > 0 And explox < 640 Then
  421.                     explox2 = enemybulletX(t)
  422.                     exploy2 = enemybulletY(t)
  423.                 Else
  424.                     explox = enemybulletX(t)
  425.                     exploy = enemybulletY(t)
  426.                 End If
  427.                 enemybulletX(t) = superenemyX(t) + 14 '1
  428.                 enemybulletY(t) = superenemyY(t) + 17 '7
  429.                 enemyshot(t) = 0
  430.             End If
  431.         End If
  432.     Next
  433.  
  434.     '   FLYING OVER THE ENDLESSLY SCROLLING SEA
  435.     '   =======================================
  436.     For w = 0 To 15
  437.         backgroundY(w) = backgroundY(w) + 3
  438.         If backgroundY(w) > 480 Then
  439.             backgroundY(w) = backgroundY(w) - 512
  440.         End If
  441.         For q = 0 To 19
  442.             _PutImage (backgroundX(q), backgroundY(w)), img(4)
  443.         Next
  444.     Next
  445.  
  446.     '   WHICH LOOKS DULL WITHOUT ISLANDS
  447.     '   ================================
  448.     For o = 0 To 2
  449.         _PutImage (islandX(o), islandY(o)), islandImage(o)
  450.     Next
  451.  
  452.     '   KEEPING OUR PLANE IN THE SCREEN AND DISPLAY IT
  453.     '   ==============================================
  454.     frame = frame + 1
  455.     If frame > 2 Then
  456.         frame = 0
  457.     End If
  458.     If planex < 0 And bigexploactive = 0 Then
  459.         planex = 0
  460.     End If
  461.     If planey < 0 And bigexploactive = 0 Then
  462.         planey = 0
  463.     End If
  464.     If planex + width0 > 640 Then
  465.         planex = 640 - width0
  466.     End If
  467.     If planey + height0 > 480 - 64 Then
  468.         planey = 480 - height0 - 64
  469.     End If
  470.     _PutImage (planex, planey), img(frame)
  471.  
  472.     '   WE HAVE TO SEE WHAT WE ARE FIGHTING
  473.     '   ===================================
  474.     For x = 0 To 4
  475.         _PutImage (enemyX(x), enemyY(x)), img(frame + 5)
  476.     Next
  477.     For i = 0 To 1
  478.         If enemyshot(i) = 0 Then
  479.             decision(i) = Int(Rnd * 199)
  480.         End If
  481.         If decision(i) = 9 Then
  482.             If enemybulletY(i) < 480 Then
  483.                 enemybulletY(i) = enemybulletY(i) + 10
  484.                 enemyshot(i) = 1
  485.             Else
  486.                 enemybulletX(i) = superenemyX(i) + 14 '1
  487.                 enemybulletY(i) = superenemyY(i) + 17 '7
  488.                 enemyshot(i) = 0
  489.             End If
  490.         Else
  491.             enemybulletX(i) = superenemyX(i) + 14 '1
  492.             enemybulletY(i) = superenemyY(i) + 17 '7
  493.             enemyshot(i) = 0
  494.         End If
  495.         If superenemyY(i) > 0 Then
  496.             _PutImage (enemybulletX(i), enemybulletY(i)), img(27)
  497.         End If
  498.     Next
  499.     For x = 0 To 1
  500.         _PutImage (superenemyX(x), superenemyY(x)), img(frame + 24)
  501.     Next
  502.  
  503.     '   AND WITH WHAT
  504.     '   =============
  505.     If bullety > 0 Then
  506.         bullety = bullety - speed * 2
  507.     Else
  508.         bulletx = -30
  509.         bullety = -30
  510.         shot = 0
  511.     End If
  512.     _PutImage (bulletx, bullety), img(3)
  513.  
  514.     '   A NICE EXPLOSION
  515.     '   ================
  516.     If explo_frame < 5 And explox > 0 Then
  517.         explo_frame = explo_frame + 1
  518.     Else
  519.         explo_frame = 0
  520.         explox = -30
  521.         exploy = -30
  522.     End If
  523.     _PutImage (explox, exploy), img(explo_frame + 8)
  524.  
  525.     '   A SECOND NICE EXPLOSION
  526.     '   =======================
  527.     If explo2_frame < 5 And explo2x > 0 Then
  528.         explo2_frame = explo2_frame + 1
  529.     Else
  530.         explo2_frame = 0
  531.         explo2x = -30
  532.         explo2y = -30
  533.     End If
  534.     _PutImage (explo2x, explo2y), img(explo2_frame + 8)
  535.  
  536.     '   A BIGGER EXPLOSION
  537.     '   ==================
  538.     If bigexploactive = 1 Then
  539.         For s = 0 To 4
  540.             enemyX(s) = Int(Rnd * 608)
  541.             enemyY(s) = 0 - Int(Rnd * 480)
  542.         Next
  543.         For s = 0 To 1
  544.             superenemyX(s) = Int(Rnd * 608)
  545.             superenemyY(s) = 0 - Int(Rnd * 480)
  546.         Next
  547.     End If
  548.     If bigexplox > 0 And bigexplox < 640 Then
  549.         bigexplo_frame = bigexplo_frame + 1
  550.     End If
  551.     If bigexplo_frame > 6 Then
  552.         bigexploactive = 0
  553.         bigexplo_frame = 0
  554.         bigexplox = -70
  555.         bigexploy = -70
  556.         lives = lives - 1
  557.         planex = 320
  558.         planey = 480 - 128
  559.         health = 100
  560.     End If
  561.     _PutImage (bigexplox, bigexploy), img(bigexplo_frame + 14)
  562.  
  563.     '   INFORMATION PANEL
  564.     '   =================
  565.     Line (0, 480 - 63)-Step(640, 63), _RGB32(220, 220, 220), BF
  566.     Line (5, 480 - 58)-Step(635, 58), _RGB32(180, 180, 180), BF
  567.     Line (5, 480 - 58)-Step(630, 58), _RGB32(120, 120, 120), BF
  568.     Line (6, 480 - 22)-Step(103, 12), _RGB32(0, 0, 255), B
  569.     Line (7, 480 - 21)-Step(100, 10), _RGB32(0, 0, 0), B
  570.     c = 143
  571.     For z = 1 To 10
  572.         Line (7, 480 - 22 + z)-(7 + health, 480 - 22 + z), _RGB32(255, c, 0)
  573.         If z > 5 Then
  574.             c = c - 44
  575.         Else
  576.             c = c + 44
  577.         End If
  578.     Next
  579.     _Font arial14
  580.     Color _RGB32(0, 0, 0), trans
  581.     _PrintString (5, 480 - 58), "Score: " + Str$(score)
  582.     _PrintString (5, 480 - 48), "Accuracy: " + Str$((bullseye / shots_fired) * 100) + "%"
  583.     For i = 1 To lives
  584.         _PutImage (120 + i * 32, 480 - 32), img(31)
  585.     Next
  586.     _PutImage (640 - width32, 480 - 58), img(32)
  587.  
  588.     '   IF ALL LIVES ARE GONE, THEN IT`S GAME OVER
  589.     '   =========================================
  590.     If lives < 0 Then
  591.         _PutImage (0, 0), img(34)
  592.         _Display
  593.         _Delay 4
  594.         System
  595.     End If
  596.  
  597.     '   DRAWING EVERYTHNG AND WAITING
  598.     '   =============================
  599.     '   AND PAUSING THE GAME IF HIS MAJESTY WANTS SO
  600.     '   ============================================
  601.     If InKey$ = "p" Or InKey$ = "P" Then
  602.         _PutImage (0, 0), img(33)
  603.         _Display
  604.         While InKey$ = "": Wend
  605.     End If
  606.  
  607.     _Delay 0.03
  608.     _Display
  609.  
  610.  
  611.  
  612.  
  613.  
  614. '=======================================================
  615. Sub collision (r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  616.     If (r1x + r1w >= r2x And r1x <= r2x + r2w And r1y + r1h >= r2y And r1y <= r2y + r2h) Then
  617.         hit = 1
  618.     Else
  619.         hit = 0
  620.     End If
  621.  
  622. Sub centerText (x1, x2, midy, s$) ' ' if you want to center fit a string between two goal posts x1, and x2
  623.     _PrintString ((x1 + x2) / 2 - _PrintWidth(s$) / 2, midy - _FontHeight(_Font) / 2), s$
  624.  
  625.  

That War font is excellent so I made use of it in Open Splash / Menu.

A very nice translation from Naalaa, nice start!
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 02:13:01 am
Cool menu. I like it.

"Nice start"? Are you possibly thinking of power-ups etc?

I have the complete sprite sheet of the game. There are LOTS of stuff that the basic Naalaa version did not include... eg: Multi-directional weapons; Submarines; Ships; POW; Flying fortress-type enemies; High Score system... Maybe add repair power up; extra life; (not sure about ammunition - that would require that ammo was limited to start with)

Food for thought...
Title: Re: 1945
Post by: bplus on December 07, 2021, 08:13:15 am
Yeah, waiting for bullet to hit top of screen before can shoot another is a bit boring.

I would say that is next thing to get going before adding more stuff plus of course the fix to whatever is causing the loss of the plane images occasionally.
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 01:55:40 pm
Slow bullets? Boring? It is meant to be slow or boring. One of the power-ups is faster bullets. (obviously not implemented - either because of time constraints or lack of know-how or just getting the game to work). In the meantime, I will create faster bullets... *sigh*

I also noticed that "glitch" as well. It happens only when the play collides with the white planes. Shooting them is fine. It also happens in the RCBasic version... I will look into it... In the meantime, 'shoot' the white planes... lol
Title: Re: 1945
Post by: bplus on December 07, 2021, 02:05:14 pm
No not slow bullets, one bullet is what is boring. Having to wait for the one bullet to reach the top of the screen before another bullet can shoot is what I am talking about.
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 02:11:27 pm
Temporary bullet speed fix: On or about line #531 within the section "and with what"... change 'bullety = bullety - speed * 2' to 'bullety = bullety - 25'

Originally the bullet speed was set to '6'

In regards to the 'glitch'... The same thing happens when running the Naalaa version... Looks like the conversion was a little 'too' accurate... lol
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 02:16:10 pm
Multiple bullets? As there is no real 'challenge' by 'spraying' bullets at the enemy, an ammunition system would need to be implemented, so that the player does not just hold the space bar down 'ad infinitum'... Moo ha ha... (no more lessons in Latin...)
Title: Re: 1945
Post by: bplus on December 07, 2021, 03:33:52 pm
Multiple bullets but a .4 sec wait for next bullet activation, so you have to be a little accurate:
Code: QB64: [Select]
  1. ' 1945qb translated by Johnno from Naalaa
  2. '2021-12-06 bplus mod splash screen / menu
  3. '2021-12-07 bplus give the players plane more than 1 bullet!
  4.  
  5. xmax = 640
  6. ymax = 480
  7. _Title "1945"
  8.  
  9. Screen _NewImage(xmax, ymax, 32)
  10.  
  11. '   ARRAYS
  12. Dim backgroundX(21)
  13. Dim backgroundY(16)
  14. Dim transitionX(21)
  15. Dim transitionY(16)
  16. Dim enemyX(5)
  17. Dim enemyY(5)
  18. Dim superenemyX(5)
  19. Dim superenemyY(5)
  20. Dim decision(2)
  21. Dim enemybulletX(2)
  22. Dim enemybulletY(2)
  23. Dim enemyshot(2)
  24. Dim islandImage(3)
  25. Dim islandX(3)
  26. Dim islandY(3)
  27. Dim img(34)
  28.  
  29.  
  30.  
  31. trans = _RGBA32(0, 0, 0, 0)
  32.  
  33. width0 = 65
  34. height0 = 65
  35. width3 = 9
  36. height3 = 19
  37. width5 = 32
  38. height5 = 32
  39. width27 = 5
  40. height27 = 5
  41. width28 = 94
  42. height28 = 31
  43. width29 = 6
  44. height29 = 11
  45. width30 = 278
  46. height30 = 141
  47. width32 = 115
  48. height32 = 58
  49.  
  50. quit = 0
  51. dead = false
  52. hit = 0
  53.  
  54. '   LOAD ASSETS
  55. '   ===========
  56.  
  57. '   Images
  58. '
  59. img(0) = _LoadImage("data/plane1.png")
  60. img(1) = _LoadImage("data/plane2.png")
  61. img(2) = _LoadImage("data/plane3.png")
  62. img(3) = _LoadImage("data/bullet.png")
  63. img(4) = _LoadImage("data/sea.png")
  64. img(5) = _LoadImage("data/enemy1.png")
  65. img(6) = _LoadImage("data/enemy2.png")
  66. img(7) = _LoadImage("data/enemy3.png")
  67. img(8) = _LoadImage("data/explosion1.png")
  68. img(9) = _LoadImage("data/explosion2.png")
  69. img(10) = _LoadImage("data/explosion3.png")
  70. img(11) = _LoadImage("data/explosion4.png")
  71. img(12) = _LoadImage("data/explosion5.png")
  72. img(13) = _LoadImage("data/explosion6.png")
  73. img(14) = _LoadImage("data/bigexplosion1.png")
  74. img(15) = _LoadImage("data/bigexplosion2.png")
  75. img(16) = _LoadImage("data/bigexplosion3.png")
  76. img(17) = _LoadImage("data/bigexplosion4.png")
  77. img(18) = _LoadImage("data/bigexplosion5.png")
  78. img(19) = _LoadImage("data/bigexplosion6.png")
  79. img(20) = _LoadImage("data/bigexplosion7.png")
  80. img(21) = _LoadImage("data/island1.png")
  81. img(22) = _LoadImage("data/island2.png")
  82. img(23) = _LoadImage("data/island3.png")
  83. img(24) = _LoadImage("data/superenemy1.png")
  84. img(25) = _LoadImage("data/superenemy2.png")
  85. img(26) = _LoadImage("data/superenemy3.png")
  86. img(27) = _LoadImage("data/enemybullet.png")
  87. img(28) = _LoadImage("data/menu.png")
  88. img(29) = _LoadImage("data/arrow.png")
  89. img(30) = _LoadImage("data/biglogo.png")
  90. img(31) = _LoadImage("data/life.png")
  91. img(32) = _LoadImage("data/logo.png")
  92. img(33) = _LoadImage("data/paused.png")
  93. img(34) = _LoadImage("data/gameover.png")
  94.  
  95. '   Sounds
  96. '
  97. shoot = _SndOpen("data/shoot.wav")
  98. explosion = _SndOpen("data/explosion.wav")
  99. collide = _SndOpen("data/collide.wav")
  100. plane_shot = _SndOpen("data/plane_shot.wav")
  101.  
  102. '   Fonts
  103. '
  104. arial14 = _LoadFont("data/arial.ttf", 14)
  105. War60 = _LoadFont("data/armalite.ttf", 60)
  106. War12 = _LoadFont("data/armalite.ttf", 12)
  107.  
  108. '   TILING THE BACKGROUND
  109. '   =====================
  110. 'backgroundX((640 / 32) + 1)
  111. 'backgroundY((480 / 32) + 1)
  112. 'transitionX((640 / 32) + 1)
  113. 'transitionY((480 / 32) + 1)
  114. For i = 0 To 640 / 32
  115.     backgroundX(i) = i * 32
  116.     transitionX(i) = i * 32
  117.     For a = 0 To 480 / 32
  118.         backgroundY(a) = a * 32
  119.         transitionY(a) = a * 32
  120.     Next
  121.  
  122.  
  123. '   A GAME MENU TO START WITH
  124. '   =========================
  125. menu = 0
  126. Color _RGB32(150, 0, 0)
  127.     Cls
  128.  
  129.  
  130.     '_PutImage ((640 - width30) / 2, 5), img(30)
  131.     _PutImage , img(30) ' full screen image
  132.  
  133.     If menu = 0 Then
  134.         _Font War60
  135.         Color _RGB32(255, 255, 255)
  136.         centerText 0, _Width, ymax * .6, "Play Game"
  137.         Color _RGB32(70, 0, 0)
  138.         _Font War12
  139.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  140.     Else
  141.         _Font War12
  142.         Color _RGB32(70, 0, 0)
  143.         centerText 0, _Width, ymax * .6, "Play Game"
  144.         _Font War60
  145.         Color _RGB32(255, 255, 255)
  146.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  147.     End If
  148.  
  149.     '_PutImage ((640 - width28) / 2, height30 + 30), img(28)
  150.     '_PutImage (((640 - width28) / 2) - width29, height30 + (30 + menu * 19)), img(29)
  151.     k& = _KeyHit
  152.     If k& = (18432) Then
  153.         menu = menu - 1
  154.     End If
  155.     If k& = (20480) Then
  156.         menu = menu + 1
  157.     End If
  158.  
  159.     If menu > 1 Then
  160.         menu = 0
  161.     End If
  162.     If menu < 0 Then
  163.         menu = 1
  164.     End If
  165.  
  166.     If _KeyDown(32) And menu = 0 Then
  167.         Exit Do
  168.     End If
  169.     If _KeyDown(32) And menu = 1 Then
  170.         For i = 0 To 640 / 32
  171.             For z = 0 To 480 / 32
  172.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  173.                 _Display
  174.                 _Limit 300
  175.             Next
  176.         Next
  177.         _PutImage (0, 0), img(34)
  178.         _Display
  179.         _Delay 1
  180.         System: 'ExitGame()
  181.     End If
  182.     _Display
  183.     _Limit 20
  184.  
  185. _Font arial14
  186. For i = 0 To 640 / 32
  187.     For z = 0 To 480 / 32
  188.         _PutImage (transitionX(i), transitionY(z)), img(4)
  189.         _Display
  190.         _Delay 0.01
  191.     Next
  192.  
  193. '   INITIALIZING VARIABLES
  194. '   =================================
  195. nBullets = 100
  196. Type bullet
  197.     As Single x, y, dx, dy, active
  198. ReDim bullets(1 To nBullets) As bullet
  199.  
  200. frame = 0
  201. explo_frame = 0
  202. bigexplo_frame = 0
  203. bigexplox = -70
  204. bigexploy = -70
  205. explo2_frame = 0
  206. speed = 6
  207. scrollspeed = 1
  208. planex = 320
  209. planey = 480 - 128
  210. enemyshot(0) = 0
  211. enemyshot(1) = 0
  212. shot = 0
  213. explox = -30
  214. exploy = -30
  215. explo2x = -30
  216. explo2y = -30
  217. score = 0
  218. lives = 3
  219. health = 100
  220. bullseye = 1
  221. shots_fired = 1
  222. bigexploactive = 0
  223.  
  224.  
  225. '   SETTING THE POSITIONS OF THE ENEMY PLANES
  226. '   =========================================
  227. For i = 0 To 4
  228.     enemyX(i) = Int(Rnd * 608)
  229.     enemyY(i) = 0 - Int(Rnd * 480) - 32
  230. For i = 0 To 1
  231.     superenemyX(i) = Int(Rnd * 608)
  232.     superenemyY(i) = 0 - Int(Rnd * 480) - 32
  233.     enemybulletX(i) = superenemyX(i) + 13
  234.     enemybulletY(i) = superenemyY(i) + 17
  235.  
  236. '   SETTING THE POSITIONS AND STARTING IMAGES OF THE ISLANDS
  237. '   ========================================================
  238. For i = 0 To 2
  239.     islandX(i) = Int(Rnd * 576)
  240.     islandY(i) = 0 - Int(Rnd * 480)
  241.     islandImage(i) = img(i + 21)
  242.  
  243. '   THE 'ACTUAL' GAME LOOP
  244. '   ======================
  245.     If quit = 1 Then
  246.         For i = 0 To 640 / 32
  247.             For z = 0 To 480 / 32
  248.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  249.                 _Display
  250.  
  251.             Next
  252.         Next
  253.         _PutImage (0, 0), img(34)
  254.         _Display
  255.         _Delay 1
  256.         Exit Do
  257.     End If
  258.  
  259.     '   CLEARING THE SCREEN
  260.     '   ===================
  261.     Cls
  262.  
  263.     '   MOVING THE PLAYER WITH THE ARROW KEYS
  264.     '   =====================================
  265.     '   OH, AND SHOOTING WITH THE SPACEBAR
  266.     '   ==================================
  267.     If _KeyDown(27) Then
  268.         quit = 1
  269.     End If
  270.     If _KeyDown(18432) Then
  271.         planey = planey - speed
  272.     End If
  273.     If _KeyDown(20480) Then
  274.         planey = planey + 4
  275.     End If
  276.     If _KeyDown(19200) Then
  277.         planex = planex - speed
  278.     End If
  279.     If _KeyDown(19712) Then
  280.         planex = planex + speed
  281.     End If
  282.     If _KeyDown(32) Then
  283.         ' find inactive bullet
  284.         If Timer - lastFire > .4 Then
  285.             For i = 1 To nBullets
  286.                 If bullets(i).active = 0 Then
  287.                     bullets(i).x = planex + 27 ' 17
  288.                     bullets(i).y = planey + 5
  289.                     bullets(i).active = -1
  290.                     _SndPlay (shoot)
  291.                     shots_fired = shots_fired + 1
  292.                     lastFire = Timer(.001)
  293.                     Exit For
  294.                 End If
  295.             Next
  296.         End If
  297.     End If
  298.  
  299.     '   MOVING THE ENEMY PLANES
  300.     '   =======================
  301.     For z = 0 To 4
  302.         If enemyY(z) > 480 Then
  303.             enemyX(z) = Int(Rnd * 608)
  304.             enemyY(z) = 0 - Int(Rnd * 480)
  305.         Else
  306.             enemyY(z) = enemyY(z) + speed
  307.         End If
  308.     Next
  309.     For z = 0 To 1
  310.         If superenemyY(z) > 480 Then
  311.             superenemyX(z) = Int(Rnd * 608)
  312.             superenemyY(z) = 0 - Int(Rnd * 480)
  313.         Else
  314.             superenemyY(z) = superenemyY(z) + speed
  315.         End If
  316.     Next
  317.  
  318.     '   MOVING THE ISLANDS
  319.     '   ==================
  320.     For z = 0 To 2
  321.         If islandY(z) > 480 Then
  322.             islandX(z) = Int(Rnd * 576)
  323.             islandY(z) = 0 - Int(Rnd * 480)
  324.             islandImage(z) = img(Int(Rnd * 3) + 21)
  325.         Else
  326.             islandY(z) = islandY(z) + 3
  327.         End If
  328.     Next
  329.  
  330.     '   CHECKING WHEN WE BEAT OR BEING BEATEN
  331.     '   =====================================
  332.     For t = 0 To 4
  333.         '   Collision with enemy?
  334.         collision planex, planey, width0, height0, enemyX(t), enemyY(t), width5, height5
  335.         If hit = 1 Then
  336.             'collision(r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  337.             If explox > 0 Then
  338.                 explo2x = enemyX(t)
  339.                 explo2y = enemyY(t)
  340.             Else
  341.                 explox = enemyX(t)
  342.                 exploy = enemyY(t)
  343.             End If
  344.             _SndPlay (explosion)
  345.             enemyX(t) = Int(Rnd * 608)
  346.             enemyY(t) = 0 - Int(Rnd * 480)
  347.             health = health - 25
  348.             If health <= 0 Then
  349.                 bigexploactive = 1
  350.                 bigexplox = planex
  351.                 bigexploy = planey
  352.                 planex = -70
  353.                 planey = -70
  354.             End If
  355.             enemyX(t) = Int(Rnd * 608)
  356.             enemyY(t) = 0 - Int(Rnd * 480)
  357.         End If
  358.  
  359.  
  360.         'If shot = 1 Then
  361.         For i = 1 To nBullets
  362.             '   Collision with player bullet and enemy
  363.             collision bullets(i).x, bullets(i).y, width3, height3, enemyX(t), enemyY(t), width5, height5
  364.             If hit = 1 Then
  365.                 If explox > 0 Then
  366.                     explo2x = enemyX(t)
  367.                     explo2y = enemyY(t)
  368.                 Else
  369.                     explox = enemyX(t)
  370.                     exploy = enemyY(t)
  371.                 End If
  372.                 _SndPlay (explosion)
  373.                 enemyX(t) = Int(Rnd * 608)
  374.                 enemyY(t) = 0 - Int(Rnd * 480)
  375.                 bullets(i).x = -30
  376.                 bullets(i).y = -30
  377.                 bullets(i).active = 0
  378.                 score = score + 50
  379.                 bullseye = bullseye + 1
  380.             End If
  381.             'End If
  382.         Next
  383.     Next
  384.     For t = 0 To 1
  385.         '   Collision with player and superenemy
  386.         collision planex, planey, width0, height0, superenemyX(t), superenemyY(t), width5, height5
  387.         If hit = 1 Then
  388.             If explox > 0 Then
  389.                 explo2x = enemyX(t)
  390.                 explo2y = enemyY(t)
  391.             Else
  392.                 explox = enemyX(t)
  393.                 exploy = enemyY(t)
  394.             End If
  395.             _SndPlay (explosion)
  396.             enemyX(t) = Int(Rnd * 608)
  397.             enemyY(t) = 0 - Int(Rnd * 480)
  398.             health = health - 25
  399.             If health <= 0 Then
  400.                 bigexploactive = 1
  401.                 bigexplox = planex
  402.                 bigexploy = planey
  403.                 planex = -70
  404.                 planey = -70
  405.             End If
  406.             enemyX(t) = Int(Rnd * 608)
  407.             enemyY(t) = 0 - Int(Rnd * 480)
  408.         End If
  409.  
  410.  
  411.         '   Collision with player bullet and superenemy
  412.         For i = 1 To nBullets
  413.             collision bullets(i).x, bullets(i).y, width3, height3, superenemyX(t), superenemyY(t), width5, height5
  414.             If hit = 1 Then
  415.                 If explox > 0 Then
  416.                     explo2x = superenemyX(t)
  417.                     explo2y = superenemyY(t)
  418.                 Else
  419.                     explox = superenemyX(t)
  420.                     exploy = superenemyY(t)
  421.                 End If
  422.                 _SndPlay (explosion)
  423.                 superenemyX(t) = Int(Rnd * 608)
  424.                 superenemyY(t) = 0 - Int(Rnd * 480)
  425.                 bullets(i).x = -30
  426.                 bullets(i).y = -30
  427.                 bullets(i).active = 0
  428.                 score = score + 100
  429.                 bullseye = bullseye + 1
  430.             End If
  431.         Next
  432.  
  433.  
  434.     Next
  435.     For t = 0 To 1
  436.         '   Collision with player and enemy bullet
  437.         If enemyshot(t) = 1 Then
  438.             collision planex, planey, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  439.             If hit = 1 Then
  440.                 health = health - 10
  441.                 If health <= 0 Then
  442.                     bigexploactive = 1
  443.                     bigexplox = planex
  444.                     bigexploy = planey
  445.                     enemybulletX(t) = -30 'had players bullets here!!!
  446.                     enemybulletY(t) = -30
  447.                 End If
  448.                 _SndPlay (explosion)
  449.                 If explox > 0 And explox < 640 Then
  450.                     explox2 = enemybulletX(t)
  451.                     exploy2 = enemybulletY(t)
  452.                 Else
  453.                     explox = enemybulletX(t)
  454.                     exploy = enemybulletY(t)
  455.                 End If
  456.                 enemybulletX(t) = superenemyX(t) + 14 '1
  457.                 enemybulletY(t) = superenemyY(t) + 17 '7
  458.                 enemyshot(t) = 0
  459.             End If
  460.         End If
  461.     Next
  462.  
  463.     '   FLYING OVER THE ENDLESSLY SCROLLING SEA
  464.     '   =======================================
  465.     For w = 0 To 15
  466.         backgroundY(w) = backgroundY(w) + 3
  467.         If backgroundY(w) > 480 Then
  468.             backgroundY(w) = backgroundY(w) - 512
  469.         End If
  470.         For q = 0 To 19
  471.             _PutImage (backgroundX(q), backgroundY(w)), img(4)
  472.         Next
  473.     Next
  474.  
  475.     '   WHICH LOOKS DULL WITHOUT ISLANDS
  476.     '   ================================
  477.     For o = 0 To 2
  478.         _PutImage (islandX(o), islandY(o)), islandImage(o)
  479.     Next
  480.  
  481.     '   KEEPING OUR PLANE IN THE SCREEN AND DISPLAY IT
  482.     '   ==============================================
  483.     frame = frame + 1
  484.     If frame > 2 Then
  485.         frame = 0
  486.     End If
  487.     If planex < 0 And bigexploactive = 0 Then
  488.         planex = 0
  489.     End If
  490.     If planey < 0 And bigexploactive = 0 Then
  491.         planey = 0
  492.     End If
  493.     If planex + width0 > 640 Then
  494.         planex = 640 - width0
  495.     End If
  496.     If planey + height0 > 480 - 64 Then
  497.         planey = 480 - height0 - 64
  498.     End If
  499.     _PutImage (planex, planey), img(frame)
  500.  
  501.     '   WE HAVE TO SEE WHAT WE ARE FIGHTING
  502.     '   ===================================
  503.     For x = 0 To 4
  504.         _PutImage (enemyX(x), enemyY(x)), img(frame + 5)
  505.     Next
  506.     For i = 0 To 1
  507.         If enemyshot(i) = 0 Then
  508.             decision(i) = Int(Rnd * 199)
  509.         End If
  510.         If decision(i) = 9 Then
  511.             If enemybulletY(i) < 480 Then
  512.                 enemybulletY(i) = enemybulletY(i) + 10
  513.                 enemyshot(i) = 1
  514.             Else
  515.                 enemybulletX(i) = superenemyX(i) + 14 '1
  516.                 enemybulletY(i) = superenemyY(i) + 17 '7
  517.                 enemyshot(i) = 0
  518.             End If
  519.         Else
  520.             enemybulletX(i) = superenemyX(i) + 14 '1
  521.             enemybulletY(i) = superenemyY(i) + 17 '7
  522.             enemyshot(i) = 0
  523.         End If
  524.         If superenemyY(i) > 0 Then
  525.             _PutImage (enemybulletX(i), enemybulletY(i)), img(27)
  526.         End If
  527.     Next
  528.     For x = 0 To 1
  529.         _PutImage (superenemyX(x), superenemyY(x)), img(frame + 24)
  530.     Next
  531.  
  532.  
  533.  
  534.     '   AND WITH WHAT
  535.     '   =============
  536.     For j = 1 To nBullets
  537.         If bullets(j).y > 0 And bullets(j).active Then
  538.             bullets(j).y = bullets(j).y - speed * 2
  539.             _PutImage (bullets(j).x, bullets(j).y), img(3)
  540.         Else
  541.             bullets(j).x = -30
  542.             bullets(j).y = -30
  543.             bullets(j).active = 0
  544.         End If
  545.     Next
  546.  
  547.  
  548.  
  549.  
  550.     '   A NICE EXPLOSION
  551.     '   ================
  552.     If explo_frame < 5 And explox > 0 Then
  553.         explo_frame = explo_frame + 1
  554.         _PutImage (explox, exploy), img(explo_frame + 8)
  555.     Else
  556.         explo_frame = 0
  557.         explox = -30
  558.         exploy = -30
  559.     End If
  560.  
  561.  
  562.     '   A SECOND NICE EXPLOSION
  563.     '   =======================
  564.     If explo2_frame < 5 And explo2x > 0 Then
  565.         explo2_frame = explo2_frame + 1
  566.         _PutImage (explo2x, explo2y), img(explo2_frame + 8)
  567.     Else
  568.         explo2_frame = 0
  569.         explo2x = -30
  570.         explo2y = -30
  571.     End If
  572.  
  573.  
  574.     '   A BIGGER EXPLOSION
  575.     '   ==================
  576.     If bigexploactive = 1 Then
  577.         For s = 0 To 4
  578.             enemyX(s) = Int(Rnd * 608)
  579.             enemyY(s) = 0 - Int(Rnd * 480)
  580.         Next
  581.         For s = 0 To 1
  582.             superenemyX(s) = Int(Rnd * 608)
  583.             superenemyY(s) = 0 - Int(Rnd * 480)
  584.         Next
  585.     End If
  586.     If bigexplox > 0 And bigexplox < 640 Then
  587.         bigexplo_frame = bigexplo_frame + 1
  588.     End If
  589.     If bigexplo_frame > 6 Then
  590.         bigexploactive = 0
  591.         bigexplo_frame = 0
  592.         bigexplox = -70
  593.         bigexploy = -70
  594.         lives = lives - 1
  595.         planex = 320
  596.         planey = 480 - 128
  597.         health = 100
  598.     End If
  599.     _PutImage (bigexplox, bigexploy), img(bigexplo_frame + 14)
  600.  
  601.     '   INFORMATION PANEL
  602.     '   =================
  603.     Line (0, 480 - 63)-Step(640, 63), _RGB32(220, 220, 220), BF
  604.     Line (5, 480 - 58)-Step(635, 58), _RGB32(180, 180, 180), BF
  605.     Line (5, 480 - 58)-Step(630, 58), _RGB32(120, 120, 120), BF
  606.     Line (6, 480 - 22)-Step(103, 12), _RGB32(0, 0, 255), B
  607.     Line (7, 480 - 21)-Step(100, 10), _RGB32(0, 0, 0), B
  608.     c = 143
  609.     For z = 1 To 10
  610.         Line (7, 480 - 22 + z)-(7 + health, 480 - 22 + z), _RGB32(255, c, 0)
  611.         If z > 5 Then
  612.             c = c - 44
  613.         Else
  614.             c = c + 44
  615.         End If
  616.     Next
  617.     _Font arial14
  618.     Color _RGB32(0, 0, 0), trans
  619.     _PrintString (5, 480 - 58), "Score: " + Str$(score)
  620.     _PrintString (5, 480 - 48), "Accuracy: " + Str$((bullseye / shots_fired) * 100) + "%"
  621.     For i = 1 To lives
  622.         _PutImage (120 + i * 32, 480 - 32), img(31)
  623.     Next
  624.     _PutImage (640 - width32, 480 - 58), img(32)
  625.  
  626.     '   IF ALL LIVES ARE GONE, THEN IT`S GAME OVER
  627.     '   =========================================
  628.     If lives < 0 Then
  629.         _PutImage (0, 0), img(34)
  630.         _Display
  631.         _Delay 1
  632.         System
  633.     End If
  634.  
  635.     '   DRAWING EVERYTHNG AND WAITING
  636.     '   =============================
  637.     '   AND PAUSING THE GAME IF HIS MAJESTY WANTS SO
  638.     '   ============================================
  639.     If InKey$ = "p" Or InKey$ = "P" Then
  640.         _PutImage (0, 0), img(33)
  641.         _Display
  642.         While InKey$ = "": Wend
  643.     End If
  644.  
  645.     _Limit 30
  646.     _Display
  647.  
  648.  
  649.  
  650.  
  651.  
  652. '=======================================================
  653. Sub collision (r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  654.     If (r1x + r1w >= r2x And r1x <= r2x + r2w And r1y + r1h >= r2y And r1y <= r2y + r2h) Then
  655.         hit = 1
  656.     Else
  657.         hit = 0
  658.     End If
  659.  
  660. Sub centerText (x1, x2, midy, s$) ' ' if you want to center fit a string between two goal posts x1, and x2
  661.     _PrintString ((x1 + x2) / 2 - _PrintWidth(s$) / 2, midy - _FontHeight(_Font) / 2), s$
  662.  
  663.  

PS I may have fixed glitch, fixed something because you had place where it should have been enemy bullet but had player bullet instead.
Title: Re: 1945
Post by: George McGinn on December 07, 2021, 05:55:40 pm
I like this game. Thanks.
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 06:50:55 pm
Thanks George... But it is not 'my' work. Created by the guys at Naalaa. I only did a 'convert'.

Bplus: There was a game, not sure if it was a top-down shooter for pygame or not, but the player, by default, used a gun that fired one bullet at a time... admittedly, there was a delay between shots, but still single-shot. Picking up a machine-gun, increased the firing rate, but because of the recoil, accuracy was sacrificed... Food for thought

Were did you find the "random feature" involving enemy bullets? Because crashing into the white plane still causes all planes to vanish...
Title: Re: 1945
Post by: bplus on December 07, 2021, 06:55:24 pm
@johnno56

Lines 459, 460 in last post, I marked the place with a comment. It was not random feature, it was the wrong bullet, instead of enemy bullet you had the player's bullet. This is right after doing a collision test with player plane and enemy  bullet, so clearly enemy bullets were meant to be reassigned.

So it's crashing into white plane, no did not catch that. That's good intell, now we have places to check.
Title: Re: 1945
Post by: bplus on December 07, 2021, 07:53:52 pm
Moved some stuff around, haven't been able to replicate the glitch even purposely crashing into white planes!

Code: QB64: [Select]
  1. ' 1945qb translated by Johnno from Naalaa
  2. '2021-12-06 bplus mod splash screen / menu
  3. '2021-12-07 bplus give the players plane more than 1 bullet!
  4.  
  5. xmax = 640
  6. ymax = 480
  7. _Title "1945"
  8.  
  9. Screen _NewImage(xmax, ymax, 32)
  10.  
  11. '   ARRAYS
  12. Dim backgroundX(21)
  13. Dim backgroundY(16)
  14. Dim transitionX(21)
  15. Dim transitionY(16)
  16. Dim enemyX(5)
  17. Dim enemyY(5)
  18. Dim superenemyX(5)
  19. Dim superenemyY(5)
  20. Dim decision(2)
  21. Dim enemybulletX(2)
  22. Dim enemybulletY(2)
  23. Dim enemyshot(2)
  24. Dim islandImage(3)
  25. Dim islandX(3)
  26. Dim islandY(3)
  27. Dim img(34)
  28.  
  29.  
  30.  
  31. trans = _RGBA32(0, 0, 0, 0)
  32.  
  33. width0 = 65
  34. height0 = 65
  35. width3 = 9
  36. height3 = 19
  37. width5 = 32
  38. height5 = 32
  39. width27 = 5
  40. height27 = 5
  41. width28 = 94
  42. height28 = 31
  43. width29 = 6
  44. height29 = 11
  45. width30 = 278
  46. height30 = 141
  47. width32 = 115
  48. height32 = 58
  49.  
  50. quit = 0
  51. dead = false
  52. hit = 0
  53.  
  54. '   LOAD ASSETS
  55. '   ===========
  56.  
  57. '   Images
  58. '
  59. img(0) = _LoadImage("data/plane1.png")
  60. img(1) = _LoadImage("data/plane2.png")
  61. img(2) = _LoadImage("data/plane3.png")
  62. img(3) = _LoadImage("data/bullet.png")
  63. img(4) = _LoadImage("data/sea.png")
  64. img(5) = _LoadImage("data/enemy1.png")
  65. img(6) = _LoadImage("data/enemy2.png")
  66. img(7) = _LoadImage("data/enemy3.png")
  67. img(8) = _LoadImage("data/explosion1.png")
  68. img(9) = _LoadImage("data/explosion2.png")
  69. img(10) = _LoadImage("data/explosion3.png")
  70. img(11) = _LoadImage("data/explosion4.png")
  71. img(12) = _LoadImage("data/explosion5.png")
  72. img(13) = _LoadImage("data/explosion6.png")
  73. img(14) = _LoadImage("data/bigexplosion1.png")
  74. img(15) = _LoadImage("data/bigexplosion2.png")
  75. img(16) = _LoadImage("data/bigexplosion3.png")
  76. img(17) = _LoadImage("data/bigexplosion4.png")
  77. img(18) = _LoadImage("data/bigexplosion5.png")
  78. img(19) = _LoadImage("data/bigexplosion6.png")
  79. img(20) = _LoadImage("data/bigexplosion7.png")
  80. img(21) = _LoadImage("data/island1.png")
  81. img(22) = _LoadImage("data/island2.png")
  82. img(23) = _LoadImage("data/island3.png")
  83. img(24) = _LoadImage("data/superenemy1.png")
  84. img(25) = _LoadImage("data/superenemy2.png")
  85. img(26) = _LoadImage("data/superenemy3.png")
  86. img(27) = _LoadImage("data/enemybullet.png")
  87. img(28) = _LoadImage("data/menu.png")
  88. img(29) = _LoadImage("data/arrow.png")
  89. img(30) = _LoadImage("data/biglogo.png")
  90. img(31) = _LoadImage("data/life.png")
  91. img(32) = _LoadImage("data/logo.png")
  92. img(33) = _LoadImage("data/paused.png")
  93. img(34) = _LoadImage("data/gameover.png")
  94.  
  95. '   Sounds
  96. '
  97. shoot = _SndOpen("data/shoot.wav")
  98. explosion = _SndOpen("data/explosion.wav")
  99. collide = _SndOpen("data/collide.wav")
  100. plane_shot = _SndOpen("data/plane_shot.wav")
  101.  
  102. '   Fonts
  103. '
  104. arial14 = _LoadFont("data/arial.ttf", 14)
  105. War60 = _LoadFont("data/armalite.ttf", 60)
  106. War12 = _LoadFont("data/armalite.ttf", 12)
  107.  
  108. '   TILING THE BACKGROUND
  109. '   =====================
  110. 'backgroundX((640 / 32) + 1)
  111. 'backgroundY((480 / 32) + 1)
  112. 'transitionX((640 / 32) + 1)
  113. 'transitionY((480 / 32) + 1)
  114. For i = 0 To 640 / 32
  115.     backgroundX(i) = i * 32
  116.     transitionX(i) = i * 32
  117.     For a = 0 To 480 / 32
  118.         backgroundY(a) = a * 32
  119.         transitionY(a) = a * 32
  120.     Next
  121.  
  122.  
  123. '   A GAME MENU TO START WITH
  124. '   =========================
  125. menu = 0
  126. Color _RGB32(150, 0, 0)
  127.     Cls
  128.  
  129.  
  130.     '_PutImage ((640 - width30) / 2, 5), img(30)
  131.     _PutImage , img(30) ' full screen image
  132.  
  133.     If menu = 0 Then
  134.         _Font War60
  135.         Color _RGB32(255, 255, 255)
  136.         centerText 0, _Width, ymax * .6, "Play Game"
  137.         Color _RGB32(70, 0, 0)
  138.         _Font War12
  139.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  140.     Else
  141.         _Font War12
  142.         Color _RGB32(70, 0, 0)
  143.         centerText 0, _Width, ymax * .6, "Play Game"
  144.         _Font War60
  145.         Color _RGB32(255, 255, 255)
  146.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  147.     End If
  148.  
  149.     '_PutImage ((640 - width28) / 2, height30 + 30), img(28)
  150.     '_PutImage (((640 - width28) / 2) - width29, height30 + (30 + menu * 19)), img(29)
  151.     k& = _KeyHit
  152.     If k& = (18432) Then
  153.         menu = menu - 1
  154.     End If
  155.     If k& = (20480) Then
  156.         menu = menu + 1
  157.     End If
  158.  
  159.     If menu > 1 Then
  160.         menu = 0
  161.     End If
  162.     If menu < 0 Then
  163.         menu = 1
  164.     End If
  165.  
  166.     If _KeyDown(32) And menu = 0 Then
  167.         Exit Do
  168.     End If
  169.     If _KeyDown(32) And menu = 1 Then
  170.         For i = 0 To 640 / 32
  171.             For z = 0 To 480 / 32
  172.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  173.                 _Display
  174.                 _Limit 300
  175.             Next
  176.         Next
  177.         _PutImage (0, 0), img(34)
  178.         _Display
  179.         _Delay 1
  180.         System: 'ExitGame()
  181.     End If
  182.     _Display
  183.     _Limit 20
  184.  
  185. _Font arial14
  186. For i = 0 To 640 / 32
  187.     For z = 0 To 480 / 32
  188.         _PutImage (transitionX(i), transitionY(z)), img(4)
  189.         _Display
  190.         _Delay 0.01
  191.     Next
  192.  
  193. '   INITIALIZING VARIABLES
  194. '   =================================
  195. nBullets = 100
  196. Type bullet
  197.     As Single x, y, dx, dy, active
  198. ReDim bullets(1 To nBullets) As bullet
  199.  
  200. frame = 0
  201. explo_frame = 0
  202. bigexplo_frame = 0
  203. bigexplox = -70
  204. bigexploy = -70
  205. explo2_frame = 0
  206. speed = 6
  207. scrollspeed = 1
  208. planex = 320
  209. planey = 480 - 128
  210. enemyshot(0) = 0
  211. enemyshot(1) = 0
  212. shot = 0
  213. explox = -30
  214. exploy = -30
  215. explo2x = -30
  216. explo2y = -30
  217. score = 0
  218. lives = 3
  219. health = 100
  220. bullseye = 1
  221. shots_fired = 1
  222. bigexploactive = 0
  223.  
  224.  
  225. '   SETTING THE POSITIONS OF THE ENEMY PLANES
  226. '   =========================================
  227. For i = 0 To 4
  228.     enemyX(i) = Int(Rnd * 608)
  229.     enemyY(i) = 0 - Int(Rnd * 480) - 32
  230. For i = 0 To 1
  231.     superenemyX(i) = Int(Rnd * 608)
  232.     superenemyY(i) = 0 - Int(Rnd * 480) - 32
  233.     enemybulletX(i) = superenemyX(i) + 13
  234.     enemybulletY(i) = superenemyY(i) + 17
  235.  
  236. '   SETTING THE POSITIONS AND STARTING IMAGES OF THE ISLANDS
  237. '   ========================================================
  238. For i = 0 To 2
  239.     islandX(i) = Int(Rnd * 576)
  240.     islandY(i) = 0 - Int(Rnd * 480)
  241.     islandImage(i) = img(i + 21)
  242.  
  243. '   THE 'ACTUAL' GAME LOOP
  244. '   ======================
  245.     If quit = 1 Then
  246.         For i = 0 To 640 / 32
  247.             For z = 0 To 480 / 32
  248.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  249.                 _Display
  250.  
  251.             Next
  252.         Next
  253.         _PutImage (0, 0), img(34)
  254.         _Display
  255.         _Delay 1
  256.         Exit Do
  257.     End If
  258.  
  259.     '   CLEARING THE SCREEN
  260.     '   ===================
  261.     Cls
  262.  
  263.     '   MOVING THE PLAYER WITH THE ARROW KEYS
  264.     '   =====================================
  265.     '   OH, AND SHOOTING WITH THE SPACEBAR
  266.     '   ==================================
  267.     If _KeyDown(27) Then
  268.         quit = 1
  269.     End If
  270.     If _KeyDown(18432) Then
  271.         planey = planey - speed
  272.     End If
  273.     If _KeyDown(20480) Then
  274.         planey = planey + 4
  275.     End If
  276.     If _KeyDown(19200) Then
  277.         planex = planex - speed
  278.     End If
  279.     If _KeyDown(19712) Then
  280.         planex = planex + speed
  281.     End If
  282.     If _KeyDown(32) Then
  283.         ' find inactive bullet
  284.         If Timer - lastFire > .4 Then
  285.             For i = 1 To nBullets
  286.                 If bullets(i).active = 0 Then
  287.                     bullets(i).x = planex + 27 ' 17
  288.                     bullets(i).y = planey + 5
  289.                     bullets(i).active = -1
  290.                     _SndPlay (shoot)
  291.                     shots_fired = shots_fired + 1
  292.                     lastFire = Timer(.001)
  293.                     Exit For
  294.                 End If
  295.             Next
  296.         End If
  297.     End If
  298.  
  299.     '   MOVING THE ENEMY PLANES
  300.     '   =======================
  301.     For z = 0 To 4
  302.         enemyY(z) = enemyY(z) + speed
  303.         If enemyY(z) > 480 Then
  304.             enemyX(z) = Int(Rnd * 608)
  305.             enemyY(z) = 0 - Int(Rnd * 480)
  306.         End If
  307.     Next
  308.     For z = 0 To 1
  309.         superenemyY(z) = superenemyY(z) + speed
  310.         If superenemyY(z) > 480 Then
  311.             superenemyX(z) = Int(Rnd * 608)
  312.             superenemyY(z) = 0 - Int(Rnd * 480)
  313.         End If
  314.     Next
  315.  
  316.     '   MOVING THE ISLANDS
  317.     '   ==================
  318.     For z = 0 To 2
  319.         islandY(z) = islandY(z) + 3
  320.         If islandY(z) > 480 Then
  321.             islandX(z) = Int(Rnd * 576)
  322.             islandY(z) = 0 - Int(Rnd * 480)
  323.             islandImage(z) = img(Int(Rnd * 3) + 21)
  324.         End If
  325.     Next
  326.  
  327.     '   CHECKING WHEN WE BEAT OR BEING BEATEN
  328.     '   =====================================
  329.     For t = 0 To 4
  330.         '   Collision with enemy?
  331.         collision planex, planey, width0, height0, enemyX(t), enemyY(t), width5, height5
  332.         If hit = 1 Then
  333.             'collision(r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  334.             If explox > 0 Then
  335.                 explo2x = enemyX(t)
  336.                 explo2y = enemyY(t)
  337.             Else
  338.                 explox = enemyX(t)
  339.                 exploy = enemyY(t)
  340.             End If
  341.             _SndPlay (explosion)
  342.             enemyX(t) = Int(Rnd * 608)
  343.             enemyY(t) = 0 - Int(Rnd * 480)
  344.             health = health - 25
  345.             If health <= 0 Then
  346.                 bigexploactive = 1
  347.                 bigexplox = planex
  348.                 bigexploy = planey
  349.                 planex = -70 '>>>>>>>>>>>>>>>>>>>>>>> this could disappear the plane !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  350.                 planey = -70
  351.             End If
  352.             'enemyX(t) = Int(Rnd * 608)         ' you have this twice???????????????
  353.             'enemyY(t) = 0 - Int(Rnd * 480)
  354.         End If
  355.  
  356.  
  357.         'If shot = 1 Then
  358.         For i = 1 To nBullets
  359.             '   Collision with player bullet and enemy
  360.             collision bullets(i).x, bullets(i).y, width3, height3, enemyX(t), enemyY(t), width5, height5
  361.             If hit = 1 Then
  362.                 If explox > 0 Then
  363.                     explo2x = enemyX(t)
  364.                     explo2y = enemyY(t)
  365.                 Else
  366.                     explox = enemyX(t)
  367.                     exploy = enemyY(t)
  368.                 End If
  369.                 _SndPlay (explosion)
  370.                 enemyX(t) = Int(Rnd * 608)
  371.                 enemyY(t) = 0 - Int(Rnd * 480)
  372.                 bullets(i).x = -30
  373.                 bullets(i).y = -30
  374.                 bullets(i).active = 0
  375.                 score = score + 50
  376.                 bullseye = bullseye + 1
  377.             End If
  378.             'End If
  379.         Next
  380.     Next
  381.     For t = 0 To 1
  382.         '   Collision with player and superenemy
  383.         collision planex, planey, width0, height0, superenemyX(t), superenemyY(t), width5, height5
  384.         If hit = 1 Then
  385.             If explox > 0 Then
  386.                 explo2x = enemyX(t)
  387.                 explo2y = enemyY(t)
  388.             Else
  389.                 explox = enemyX(t)
  390.                 exploy = enemyY(t)
  391.             End If
  392.             _SndPlay (explosion)
  393.             enemyX(t) = Int(Rnd * 608)
  394.             enemyY(t) = 0 - Int(Rnd * 480)
  395.             health = health - 25
  396.             If health <= 0 Then
  397.                 bigexploactive = 1
  398.                 bigexplox = planex
  399.                 bigexploy = planey
  400.                 planex = -70 '>>>>>>>>>>>>>>>>>>>>>>> this could disappear the plane !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
  401.                 planey = -70
  402.             End If
  403.             enemyX(t) = Int(Rnd * 608)
  404.             enemyY(t) = 0 - Int(Rnd * 480)
  405.         End If
  406.  
  407.  
  408.         '   Collision with player bullet and superenemy
  409.         For i = 1 To nBullets
  410.             collision bullets(i).x, bullets(i).y, width3, height3, superenemyX(t), superenemyY(t), width5, height5
  411.             If hit = 1 Then
  412.                 If explox > 0 Then
  413.                     explo2x = superenemyX(t)
  414.                     explo2y = superenemyY(t)
  415.                 Else
  416.                     explox = superenemyX(t)
  417.                     exploy = superenemyY(t)
  418.                 End If
  419.                 _SndPlay (explosion)
  420.                 superenemyX(t) = Int(Rnd * 608)
  421.                 superenemyY(t) = 0 - Int(Rnd * 480)
  422.                 bullets(i).x = -30
  423.                 bullets(i).y = -30
  424.                 bullets(i).active = 0
  425.                 score = score + 100
  426.                 bullseye = bullseye + 1
  427.             End If
  428.         Next
  429.  
  430.  
  431.     Next
  432.     For t = 0 To 1
  433.         '   Collision with player and enemy bullet
  434.         If enemyshot(t) = 1 Then
  435.             collision planex, planey, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  436.             If hit = 1 Then
  437.                 health = health - 10
  438.                 If health <= 0 Then
  439.                     bigexploactive = 1
  440.                     bigexplox = planex
  441.                     bigexploy = planey
  442.                     enemybulletX(t) = -30 'had players bullets here!!!
  443.                     enemybulletY(t) = -30
  444.                 End If
  445.                 _SndPlay (explosion)
  446.                 If explox > 0 And explox < 640 Then
  447.                     explox2 = enemybulletX(t)
  448.                     exploy2 = enemybulletY(t)
  449.                 Else
  450.                     explox = enemybulletX(t)
  451.                     exploy = enemybulletY(t)
  452.                 End If
  453.                 enemybulletX(t) = superenemyX(t) + 14 '1
  454.                 enemybulletY(t) = superenemyY(t) + 17 '7
  455.                 enemyshot(t) = 0
  456.             End If
  457.         End If
  458.     Next
  459.  
  460.     '   FLYING OVER THE ENDLESSLY SCROLLING SEA
  461.     '   =======================================
  462.     For w = 0 To 15
  463.         backgroundY(w) = backgroundY(w) + 3
  464.         If backgroundY(w) > 480 Then
  465.             backgroundY(w) = backgroundY(w) - 512
  466.         End If
  467.         For q = 0 To 19
  468.             _PutImage (backgroundX(q), backgroundY(w)), img(4)
  469.         Next
  470.     Next
  471.  
  472.     '   WHICH LOOKS DULL WITHOUT ISLANDS
  473.     '   ================================
  474.     For o = 0 To 2
  475.         _PutImage (islandX(o), islandY(o)), islandImage(o)
  476.     Next
  477.  
  478.     '   KEEPING OUR PLANE IN THE SCREEN AND DISPLAY IT
  479.     '   ==============================================
  480.     frame = frame + 1
  481.     If frame > 2 Then
  482.         frame = 0
  483.     End If
  484.     If planex < 0 And bigexploactive = 0 Then
  485.         planex = 0
  486.     End If
  487.     If planey < 0 And bigexploactive = 0 Then
  488.         planey = 0
  489.     End If
  490.     If planex + width0 > 640 Then
  491.         planex = 640 - width0
  492.     End If
  493.     If planey + height0 > 480 - 64 Then
  494.         planey = 480 - height0 - 64
  495.     End If
  496.     _PutImage (planex, planey), img(frame)
  497.  
  498.     '   WE HAVE TO SEE WHAT WE ARE FIGHTING
  499.     '   ===================================
  500.     For x = 0 To 4
  501.         _PutImage (enemyX(x), enemyY(x)), img(frame + 5)
  502.     Next
  503.     For i = 0 To 1
  504.         If enemyshot(i) = 0 Then
  505.             decision(i) = Int(Rnd * 199)
  506.         End If
  507.         If decision(i) = 9 Then
  508.             If enemybulletY(i) < 480 Then
  509.                 enemybulletY(i) = enemybulletY(i) + 10
  510.                 enemyshot(i) = 1
  511.             Else
  512.                 enemybulletX(i) = superenemyX(i) + 14 '1
  513.                 enemybulletY(i) = superenemyY(i) + 17 '7
  514.                 enemyshot(i) = 0
  515.             End If
  516.         Else
  517.             enemybulletX(i) = superenemyX(i) + 14 '1
  518.             enemybulletY(i) = superenemyY(i) + 17 '7
  519.             enemyshot(i) = 0
  520.         End If
  521.         If superenemyY(i) > 0 Then
  522.             _PutImage (enemybulletX(i), enemybulletY(i)), img(27)
  523.         End If
  524.     Next
  525.     For x = 0 To 1
  526.         _PutImage (superenemyX(x), superenemyY(x)), img(frame + 24)
  527.     Next
  528.  
  529.  
  530.  
  531.     '   AND WITH WHAT
  532.     '   =============
  533.     For j = 1 To nBullets
  534.         If bullets(j).y > 0 And bullets(j).active Then
  535.             bullets(j).y = bullets(j).y - speed * 2
  536.             _PutImage (bullets(j).x, bullets(j).y), img(3)
  537.         Else
  538.             bullets(j).x = -30
  539.             bullets(j).y = -30
  540.             bullets(j).active = 0
  541.         End If
  542.     Next
  543.  
  544.  
  545.  
  546.  
  547.     '   A NICE EXPLOSION
  548.     '   ================
  549.     If explo_frame < 5 And explox > 0 Then
  550.         explo_frame = explo_frame + 1
  551.         _PutImage (explox, exploy), img(explo_frame + 8)
  552.     Else
  553.         explo_frame = 0
  554.         explox = -30
  555.         exploy = -30
  556.     End If
  557.  
  558.  
  559.     '   A SECOND NICE EXPLOSION
  560.     '   =======================
  561.     If explo2_frame < 5 And explo2x > 0 Then
  562.         explo2_frame = explo2_frame + 1
  563.         _PutImage (explo2x, explo2y), img(explo2_frame + 8)
  564.     Else
  565.         explo2_frame = 0
  566.         explo2x = -30
  567.         explo2y = -30
  568.     End If
  569.  
  570.  
  571.     '   A BIGGER EXPLOSION
  572.     '   ==================
  573.     If bigexploactive = 1 Then
  574.         For s = 0 To 4
  575.             enemyX(s) = Int(Rnd * 608)
  576.             enemyY(s) = 0 - Int(Rnd * 480)
  577.         Next
  578.         For s = 0 To 1
  579.             superenemyX(s) = Int(Rnd * 608)
  580.             superenemyY(s) = 0 - Int(Rnd * 480)
  581.         Next
  582.     End If
  583.     If bigexplox > 0 And bigexplox < 640 Then
  584.         bigexplo_frame = bigexplo_frame + 1
  585.     End If
  586.     If bigexplo_frame > 6 Then
  587.         bigexploactive = 0
  588.         bigexplo_frame = 0
  589.         bigexplox = -70
  590.         bigexploy = -70
  591.         lives = lives - 1
  592.         planex = 320
  593.         planey = 480 - 128
  594.         health = 100
  595.     End If
  596.     _PutImage (bigexplox, bigexploy), img(bigexplo_frame + 14)
  597.  
  598.     '   INFORMATION PANEL
  599.     '   =================
  600.     Line (0, 480 - 63)-Step(640, 63), _RGB32(220, 220, 220), BF
  601.     Line (5, 480 - 58)-Step(635, 58), _RGB32(180, 180, 180), BF
  602.     Line (5, 480 - 58)-Step(630, 58), _RGB32(120, 120, 120), BF
  603.     Line (6, 480 - 22)-Step(103, 12), _RGB32(0, 0, 255), B
  604.     Line (7, 480 - 21)-Step(100, 10), _RGB32(0, 0, 0), B
  605.     c = 143
  606.     For z = 1 To 10
  607.         Line (7, 480 - 22 + z)-(7 + health, 480 - 22 + z), _RGB32(255, c, 0)
  608.         If z > 5 Then
  609.             c = c - 44
  610.         Else
  611.             c = c + 44
  612.         End If
  613.     Next
  614.     _Font arial14
  615.     Color _RGB32(0, 0, 0), trans
  616.     _PrintString (5, 480 - 58), "Score: " + Str$(score)
  617.     _PrintString (5, 480 - 48), "Accuracy: " + Str$((bullseye / shots_fired) * 100) + "%"
  618.     For i = 1 To lives
  619.         _PutImage (120 + i * 32, 480 - 32), img(31)
  620.     Next
  621.     _PutImage (640 - width32, 480 - 58), img(32)
  622.  
  623.     '   IF ALL LIVES ARE GONE, THEN IT`S GAME OVER
  624.     '   =========================================
  625.     If lives < 0 Then
  626.         _PutImage (0, 0), img(34)
  627.         _Display
  628.         _Delay 1
  629.         Exit Do
  630.     End If
  631.  
  632.     '   DRAWING EVERYTHNG AND WAITING
  633.     '   =============================
  634.     '   AND PAUSING THE GAME IF HIS MAJESTY WANTS SO
  635.     '   ============================================
  636.     If InKey$ = "p" Or InKey$ = "P" Then
  637.         _PutImage (0, 0), img(33)
  638.         _Display
  639.         While InKey$ = "": Wend
  640.     End If
  641.  
  642.     _Limit 30
  643.     _Display
  644.  
  645.  
  646.  
  647.  
  648. '=======================================================
  649. Sub collision (r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  650.     If (r1x + r1w >= r2x And r1x <= r2x + r2w And r1y + r1h >= r2y And r1y <= r2y + r2h) Then
  651.         hit = 1
  652.     Else
  653.         hit = 0
  654.     End If
  655.  
  656. Sub centerText (x1, x2, midy, s$) ' ' if you want to center fit a string between two goal posts x1, and x2
  657.     _PrintString ((x1 + x2) / 2 - _PrintWidth(s$) / 2, midy - _FontHeight(_Font) / 2), s$
  658.  
  659.  
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 09:00:53 pm
The reason why the 'player bullets' was used is because that was in the original Naalaa listing... But yeah. I'm also having fun and games trying to find the cause of the glitch. I have a sneaking suspicion that the collision detect may be involved somehow...
Title: Re: 1945
Post by: bplus on December 07, 2021, 09:52:11 pm
Here's an example of something I moved around:
Code: QB64: [Select]
  1.     For z = 0 To 1
  2.         superenemyY(z) = superenemyY(z) + speed
  3.         If superenemyY(z) > 480 Then
  4.             superenemyX(z) = Int(Rnd * 608)
  5.             superenemyY(z) = 0 - Int(Rnd * 480)
  6.         End If
  7.     Next
  8.  
  9.  

I changed the position with speed and then I checked where the new location was and if beyond then reassign.

The code before was checking before the move, then doing the move. That could screw things up.
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 11:34:41 pm
The problem has been fixed!

I suspected that the problem was with the collision detection parts of the game... obviously...
Trial and error commenting out each detection routine with varying results but no solution.
The problem involved colliding with the white planes, the Super Enemy, so I isolated all the other detection sections (just in case) and ran only with 'collide with superenemy'. Picked it to bits with no joy.

The phrase, "None are as blind as those that do not see", finally sprang to mind.

The solution was within the comment of the section: "Collision with player and superenemy"

Look closely at 'that' section.... In the program you have already installed... The routine 'detects' superenemies but only handles enemies !!

Code: QB64: [Select]
  1. ' 1945qb translated by Johnno from Naalaa
  2. '2021-12-06 bplus mod splash screen / menu
  3. '2021-12-07 bplus give the players plane more than 1 bullet!
  4.  
  5. xmax = 640
  6. ymax = 480
  7. _Title "1945"
  8.  
  9. Screen _NewImage(xmax, ymax, 32)
  10.  
  11. '   ARRAYS
  12. Dim backgroundX(21)
  13. Dim backgroundY(16)
  14. Dim transitionX(21)
  15. Dim transitionY(16)
  16. Dim enemyX(5)
  17. Dim enemyY(5)
  18. Dim superenemyX(5)
  19. Dim superenemyY(5)
  20. Dim decision(2)
  21. Dim enemybulletX(2)
  22. Dim enemybulletY(2)
  23. Dim enemyshot(2)
  24. Dim islandImage(3)
  25. Dim islandX(3)
  26. Dim islandY(3)
  27. Dim img(34)
  28.  
  29.  
  30.  
  31. trans = _RGBA32(0, 0, 0, 0)
  32.  
  33. width0 = 65
  34. height0 = 65
  35. width3 = 9
  36. height3 = 19
  37. width5 = 32
  38. height5 = 32
  39. width27 = 5
  40. height27 = 5
  41. width28 = 94
  42. height28 = 31
  43. width29 = 6
  44. height29 = 11
  45. width30 = 278
  46. height30 = 141
  47. width32 = 115
  48. height32 = 58
  49.  
  50. quit = 0
  51. dead = false
  52. hit = 0
  53.  
  54. '   LOAD ASSETS
  55. '   ===========
  56.  
  57. '   Images
  58. '
  59. img(0) = _LoadImage("data/plane1.png")
  60. img(1) = _LoadImage("data/plane2.png")
  61. img(2) = _LoadImage("data/plane3.png")
  62. img(3) = _LoadImage("data/bullet.png")
  63. img(4) = _LoadImage("data/sea.png")
  64. img(5) = _LoadImage("data/enemy1.png")
  65. img(6) = _LoadImage("data/enemy2.png")
  66. img(7) = _LoadImage("data/enemy3.png")
  67. img(8) = _LoadImage("data/explosion1.png")
  68. img(9) = _LoadImage("data/explosion2.png")
  69. img(10) = _LoadImage("data/explosion3.png")
  70. img(11) = _LoadImage("data/explosion4.png")
  71. img(12) = _LoadImage("data/explosion5.png")
  72. img(13) = _LoadImage("data/explosion6.png")
  73. img(14) = _LoadImage("data/bigexplosion1.png")
  74. img(15) = _LoadImage("data/bigexplosion2.png")
  75. img(16) = _LoadImage("data/bigexplosion3.png")
  76. img(17) = _LoadImage("data/bigexplosion4.png")
  77. img(18) = _LoadImage("data/bigexplosion5.png")
  78. img(19) = _LoadImage("data/bigexplosion6.png")
  79. img(20) = _LoadImage("data/bigexplosion7.png")
  80. img(21) = _LoadImage("data/island1.png")
  81. img(22) = _LoadImage("data/island2.png")
  82. img(23) = _LoadImage("data/island3.png")
  83. img(24) = _LoadImage("data/superenemy1.png")
  84. img(25) = _LoadImage("data/superenemy2.png")
  85. img(26) = _LoadImage("data/superenemy3.png")
  86. img(27) = _LoadImage("data/enemybullet.png")
  87. img(28) = _LoadImage("data/menu.png")
  88. img(29) = _LoadImage("data/arrow.png")
  89. img(30) = _LoadImage("data/biglogo.png")
  90. img(31) = _LoadImage("data/life.png")
  91. img(32) = _LoadImage("data/logo.png")
  92. img(33) = _LoadImage("data/paused.png")
  93. img(34) = _LoadImage("data/gameover.png")
  94.  
  95. '   Sounds
  96. '
  97. shoot = _SndOpen("data/shoot.wav")
  98. explosion = _SndOpen("data/explosion.wav")
  99. collide = _SndOpen("data/collide.wav")
  100. plane_shot = _SndOpen("data/plane_shot.wav")
  101.  
  102. '   Fonts
  103. '
  104. arial14 = _LoadFont("data/arial.ttf", 14)
  105. War60 = _LoadFont("data/armalite.ttf", 60)
  106. War12 = _LoadFont("data/armalite.ttf", 12)
  107.  
  108. '   TILING THE BACKGROUND
  109. '   =====================
  110. 'backgroundX((640 / 32) + 1)
  111. 'backgroundY((480 / 32) + 1)
  112. 'transitionX((640 / 32) + 1)
  113. 'transitionY((480 / 32) + 1)
  114. For i = 0 To 640 / 32
  115.     backgroundX(i) = i * 32
  116.     transitionX(i) = i * 32
  117.     For a = 0 To 480 / 32
  118.         backgroundY(a) = a * 32
  119.         transitionY(a) = a * 32
  120.     Next
  121.  
  122.  
  123. '   A GAME MENU TO START WITH
  124. '   =========================
  125. menu = 0
  126. Color _RGB32(150, 0, 0)
  127.     Cls
  128.  
  129.  
  130.     '_PutImage ((640 - width30) / 2, 5), img(30)
  131.     _PutImage , img(30) ' full screen image
  132.  
  133.     If menu = 0 Then
  134.         _Font War60
  135.         Color _RGB32(255, 255, 255)
  136.         centerText 0, _Width, ymax * .6, "Play Game"
  137.         Color _RGB32(70, 0, 0)
  138.         _Font War12
  139.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  140.     Else
  141.         _Font War12
  142.         Color _RGB32(70, 0, 0)
  143.         centerText 0, _Width, ymax * .6, "Play Game"
  144.         _Font War60
  145.         Color _RGB32(255, 255, 255)
  146.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  147.     End If
  148.  
  149.     '_PutImage ((640 - width28) / 2, height30 + 30), img(28)
  150.     '_PutImage (((640 - width28) / 2) - width29, height30 + (30 + menu * 19)), img(29)
  151.     k& = _KeyHit
  152.     If k& = (18432) Then
  153.         menu = menu - 1
  154.     End If
  155.     If k& = (20480) Then
  156.         menu = menu + 1
  157.     End If
  158.  
  159.     If menu > 1 Then
  160.         menu = 0
  161.     End If
  162.     If menu < 0 Then
  163.         menu = 1
  164.     End If
  165.  
  166.     If _KeyDown(32) And menu = 0 Then
  167.         Exit Do
  168.     End If
  169.     If _KeyDown(32) And menu = 1 Then
  170.         For i = 0 To 640 / 32
  171.             For z = 0 To 480 / 32
  172.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  173.                 _Display
  174.                 _Limit 300
  175.             Next
  176.         Next
  177.         _PutImage (0, 0), img(34)
  178.         _Display
  179.         _Delay 1
  180.         System: 'ExitGame()
  181.     End If
  182.     _Display
  183.     _Limit 20
  184.  
  185. _Font arial14
  186. For i = 0 To 640 / 32
  187.     For z = 0 To 480 / 32
  188.         _PutImage (transitionX(i), transitionY(z)), img(4)
  189.         _Display
  190.         _Delay 0.01
  191.     Next
  192.  
  193. '   INITIALIZING VARIABLES
  194. '   =================================
  195. nBullets = 100
  196. Type bullet
  197.     As Single x, y, dx, dy, active
  198. ReDim bullets(1 To nBullets) As bullet
  199.  
  200. frame = 0
  201. explo_frame = 0
  202. bigexplo_frame = 0
  203. bigexplox = -70
  204. bigexploy = -70
  205. explo2_frame = 0
  206. speed = 6
  207. scrollspeed = 1
  208. planex = 320
  209. planey = 480 - 128
  210. enemyshot(0) = 0
  211. enemyshot(1) = 0
  212. shot = 0
  213. explox = -30
  214. exploy = -30
  215. explo2x = -30
  216. explo2y = -30
  217. score = 0
  218. lives = 3
  219. health = 100
  220. bullseye = 1
  221. shots_fired = 1
  222. bigexploactive = 0
  223.  
  224.  
  225. '   SETTING THE POSITIONS OF THE ENEMY PLANES
  226. '   =========================================
  227. For i = 0 To 4
  228.     enemyX(i) = Int(Rnd * 608)
  229.     enemyY(i) = 0 - Int(Rnd * 480) - 32
  230. For i = 0 To 1
  231.     superenemyX(i) = Int(Rnd * 608)
  232.     superenemyY(i) = 0 - Int(Rnd * 480) - 32
  233.     enemybulletX(i) = superenemyX(i) + 13
  234.     enemybulletY(i) = superenemyY(i) + 17
  235.  
  236. '   SETTING THE POSITIONS AND STARTING IMAGES OF THE ISLANDS
  237. '   ========================================================
  238. For i = 0 To 2
  239.     islandX(i) = Int(Rnd * 576)
  240.     islandY(i) = 0 - Int(Rnd * 480)
  241.     islandImage(i) = img(i + 21)
  242.  
  243. '   THE 'ACTUAL' GAME LOOP
  244. '   ======================
  245.     If quit = 1 Then
  246.         For i = 0 To 640 / 32
  247.             For z = 0 To 480 / 32
  248.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  249.                 _Display
  250.  
  251.             Next
  252.         Next
  253.         _PutImage (0, 0), img(34)
  254.         _Display
  255.         _Delay 1
  256.         Exit Do
  257.     End If
  258.  
  259.     '   CLEARING THE SCREEN
  260.     '   ===================
  261.     Cls
  262.  
  263.     '   MOVING THE PLAYER WITH THE ARROW KEYS
  264.     '   =====================================
  265.     '   OH, AND SHOOTING WITH THE SPACEBAR
  266.     '   ==================================
  267.     If _KeyDown(27) Then
  268.         quit = 1
  269.     End If
  270.     If _KeyDown(18432) Then
  271.         planey = planey - speed
  272.     End If
  273.     If _KeyDown(20480) Then
  274.         planey = planey + 4
  275.     End If
  276.     If _KeyDown(19200) Then
  277.         planex = planex - speed
  278.     End If
  279.     If _KeyDown(19712) Then
  280.         planex = planex + speed
  281.     End If
  282.     If _KeyDown(32) Then
  283.         ' find inactive bullet
  284.         If Timer - lastFire > .4 Then
  285.             For i = 1 To nBullets
  286.                 If bullets(i).active = 0 Then
  287.                     bullets(i).x = planex + 27 ' 17
  288.                     bullets(i).y = planey + 5
  289.                     bullets(i).active = -1
  290.                     _SndPlay (shoot)
  291.                     shots_fired = shots_fired + 1
  292.                     lastFire = Timer(.001)
  293.                     Exit For
  294.                 End If
  295.             Next
  296.         End If
  297.     End If
  298.  
  299.     '   MOVING THE ENEMY PLANES
  300.     '   =======================
  301.     For z = 0 To 4
  302.         If enemyY(z) > 480 Then
  303.             enemyX(z) = Int(Rnd * 608)
  304.             enemyY(z) = 0 - Int(Rnd * 480)
  305.         Else
  306.             enemyY(z) = enemyY(z) + speed
  307.         End If
  308.     Next
  309.     For z = 0 To 1
  310.         If superenemyY(z) > 480 Then
  311.             superenemyX(z) = Int(Rnd * 608)
  312.             superenemyY(z) = 0 - Int(Rnd * 480)
  313.         Else
  314.             superenemyY(z) = superenemyY(z) + speed
  315.         End If
  316.     Next
  317.  
  318.     '   MOVING THE ISLANDS
  319.     '   ==================
  320.     For z = 0 To 2
  321.         If islandY(z) > 480 Then
  322.             islandX(z) = Int(Rnd * 576)
  323.             islandY(z) = 0 - Int(Rnd * 480)
  324.             islandImage(z) = img(Int(Rnd * 3) + 21)
  325.         Else
  326.             islandY(z) = islandY(z) + 3
  327.         End If
  328.     Next
  329.  
  330.     '   CHECKING WHEN WE BEAT OR BEING BEATEN
  331.     '   =====================================
  332.     For t = 0 To 4
  333.         '   Collision with enemy?
  334.         collision planex, planey, width0, height0, enemyX(t), enemyY(t), width5, height5
  335.         If hit = 1 Then
  336.             'collision(r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  337.             If explox > 0 Then
  338.                 explo2x = enemyX(t)
  339.                 explo2y = enemyY(t)
  340.             Else
  341.                 explox = enemyX(t)
  342.                 exploy = enemyY(t)
  343.             End If
  344.             _SndPlay (explosion)
  345.             enemyX(t) = Int(Rnd * 608)
  346.             enemyY(t) = 0 - Int(Rnd * 480)
  347.             health = health - 25
  348.             If health <= 0 Then
  349.                 bigexploactive = 1
  350.                 bigexplox = planex
  351.                 bigexploy = planey
  352.                 planex = -70
  353.                 planey = -70
  354.             End If
  355.             enemyX(t) = Int(Rnd * 608)
  356.             enemyY(t) = 0 - Int(Rnd * 480)
  357.         End If
  358.  
  359.  
  360.         'If shot = 1 Then
  361.         For i = 1 To nBullets
  362.             '   Collision with player bullet and enemy
  363.             collision bullets(i).x, bullets(i).y, width3, height3, enemyX(t), enemyY(t), width5, height5
  364.             If hit = 1 Then
  365.                 If explox > 0 Then
  366.                     explo2x = enemyX(t)
  367.                     explo2y = enemyY(t)
  368.                 Else
  369.                     explox = enemyX(t)
  370.                     exploy = enemyY(t)
  371.                 End If
  372.                 _SndPlay (explosion)
  373.                 enemyX(t) = Int(Rnd * 608)
  374.                 enemyY(t) = 0 - Int(Rnd * 480)
  375.                 bullets(i).x = -30
  376.                 bullets(i).y = -30
  377.                 bullets(i).active = 0
  378.                 score = score + 50
  379.                 bullseye = bullseye + 1
  380.             End If
  381.             'End If
  382.         Next
  383.     Next
  384.     For t = 0 To 1
  385.         '   Collision with player and superenemy  <<==========
  386.         collision planex, planey, width0, height0, superenemyX(t), superenemyY(t), width5, height5
  387.         If hit = 1 Then
  388.             If explox > 0 Then
  389.                 explo2x = superenemyX(t) ' <<======
  390.                 explo2y = superenemyY(t) ' <<======
  391.             Else
  392.                 explox = enemyX(t)
  393.                 exploy = enemyY(t)
  394.             End If
  395.             _SndPlay (explosion)
  396.             superenemyX(t) = Int(Rnd * 608) ' <<======
  397.             superenemyY(t) = 0 - Int(Rnd * 480) ' <<======
  398.             health = health - 25
  399.             If health <= 0 Then
  400.                 bigexploactive = 1
  401.                 bigexplox = planex
  402.                 bigexploy = planey
  403.                 planex = -70
  404.                 planey = -70
  405.             End If
  406.             superenemyX(t) = Int(Rnd * 608) ' <<======
  407.             superenemyY(t) = 0 - Int(Rnd * 480) ' <<======
  408.         End If
  409.  
  410.  
  411.         '   Collision with player bullet and superenemy
  412.         For i = 1 To nBullets
  413.             collision bullets(i).x, bullets(i).y, width3, height3, superenemyX(t), superenemyY(t), width5, height5
  414.             If hit = 1 Then
  415.                 If explox > 0 Then
  416.                     explo2x = superenemyX(t)
  417.                     explo2y = superenemyY(t)
  418.                 Else
  419.                     explox = superenemyX(t)
  420.                     exploy = superenemyY(t)
  421.                 End If
  422.                 _SndPlay (explosion)
  423.                 superenemyX(t) = Int(Rnd * 608)
  424.                 superenemyY(t) = 0 - Int(Rnd * 480)
  425.                 bullets(i).x = -30
  426.                 bullets(i).y = -30
  427.                 bullets(i).active = 0
  428.                 score = score + 100
  429.                 bullseye = bullseye + 1
  430.             End If
  431.         Next
  432.     Next
  433.     For t = 0 To 1
  434.         '   Collision with player and enemy bullet
  435.         If enemyshot(t) = 1 Then
  436.             collision planex, planey, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  437.             If hit = 1 Then
  438.                 health = health - 10
  439.                 If health <= 0 Then
  440.                     bigexploactive = 1
  441.                     bigexplox = planex
  442.                     bigexploy = planey
  443.                     enemybulletX(t) = -30 'had players bullets here!!!
  444.                     enemybulletY(t) = -30
  445.                 End If
  446.                 _SndPlay (explosion)
  447.                 If explox > 0 And explox < 640 Then
  448.                     explox2 = enemybulletX(t)
  449.                     exploy2 = enemybulletY(t)
  450.                 Else
  451.                     explox = enemybulletX(t)
  452.                     exploy = enemybulletY(t)
  453.                 End If
  454.                 enemybulletX(t) = superenemyX(t) + 14 '1
  455.                 enemybulletY(t) = superenemyY(t) + 17 '7
  456.                 enemyshot(t) = 0
  457.             End If
  458.         End If
  459.     Next
  460.  
  461.     '   FLYING OVER THE ENDLESSLY SCROLLING SEA
  462.     '   =======================================
  463.     For w = 0 To 15
  464.         backgroundY(w) = backgroundY(w) + 3
  465.         If backgroundY(w) > 480 Then
  466.             backgroundY(w) = backgroundY(w) - 512
  467.         End If
  468.         For q = 0 To 19
  469.             _PutImage (backgroundX(q), backgroundY(w)), img(4)
  470.         Next
  471.     Next
  472.  
  473.     '   WHICH LOOKS DULL WITHOUT ISLANDS
  474.     '   ================================
  475.     For o = 0 To 2
  476.         _PutImage (islandX(o), islandY(o)), islandImage(o)
  477.     Next
  478.  
  479.     '   KEEPING OUR PLANE IN THE SCREEN AND DISPLAY IT
  480.     '   ==============================================
  481.     frame = frame + 1
  482.     If frame > 2 Then
  483.         frame = 0
  484.     End If
  485.     If planex < 0 And bigexploactive = 0 Then
  486.         planex = 0
  487.     End If
  488.     If planey < 0 And bigexploactive = 0 Then
  489.         planey = 0
  490.     End If
  491.     If planex + width0 > 640 Then
  492.         planex = 640 - width0
  493.     End If
  494.     If planey + height0 > 480 - 64 Then
  495.         planey = 480 - height0 - 64
  496.     End If
  497.     _PutImage (planex, planey), img(frame)
  498.  
  499.     '   WE HAVE TO SEE WHAT WE ARE FIGHTING
  500.     '   ===================================
  501.     For x = 0 To 4
  502.         _PutImage (enemyX(x), enemyY(x)), img(frame + 5)
  503.     Next
  504.     For i = 0 To 1
  505.         If enemyshot(i) = 0 Then
  506.             decision(i) = Int(Rnd * 199)
  507.         End If
  508.         If decision(i) = 9 Then
  509.             If enemybulletY(i) < 480 Then
  510.                 enemybulletY(i) = enemybulletY(i) + 10
  511.                 enemyshot(i) = 1
  512.             Else
  513.                 enemybulletX(i) = superenemyX(i) + 14 '1
  514.                 enemybulletY(i) = superenemyY(i) + 17 '7
  515.                 enemyshot(i) = 0
  516.             End If
  517.         Else
  518.             enemybulletX(i) = superenemyX(i) + 14 '1
  519.             enemybulletY(i) = superenemyY(i) + 17 '7
  520.             enemyshot(i) = 0
  521.         End If
  522.         If superenemyY(i) > 0 Then
  523.             _PutImage (enemybulletX(i), enemybulletY(i)), img(27)
  524.         End If
  525.     Next
  526.     For x = 0 To 1
  527.         _PutImage (superenemyX(x), superenemyY(x)), img(frame + 24)
  528.     Next
  529.  
  530.     '   AND WITH WHAT
  531.     '   =============
  532.     For j = 1 To nBullets
  533.         If bullets(j).y > 0 And bullets(j).active Then
  534.             bullets(j).y = bullets(j).y - speed * 2
  535.             _PutImage (bullets(j).x, bullets(j).y), img(3)
  536.         Else
  537.             bullets(j).x = -30
  538.             bullets(j).y = -30
  539.             bullets(j).active = 0
  540.         End If
  541.     Next
  542.  
  543.     '   A NICE EXPLOSION
  544.     '   ================
  545.     If explo_frame < 5 And explox > 0 Then
  546.         explo_frame = explo_frame + 1
  547.         _PutImage (explox, exploy), img(explo_frame + 8)
  548.     Else
  549.         explo_frame = 0
  550.         explox = -30
  551.         exploy = -30
  552.     End If
  553.  
  554.     '   A SECOND NICE EXPLOSION
  555.     '   =======================
  556.     If explo2_frame < 5 And explo2x > 0 Then
  557.         explo2_frame = explo2_frame + 1
  558.         _PutImage (explo2x, explo2y), img(explo2_frame + 8)
  559.     Else
  560.         explo2_frame = 0
  561.         explo2x = -30
  562.         explo2y = -30
  563.     End If
  564.  
  565.  
  566.     '   A BIGGER EXPLOSION
  567.     '   ==================
  568.     If bigexploactive = 1 Then
  569.         For s = 0 To 4
  570.             enemyX(s) = Int(Rnd * 608)
  571.             enemyY(s) = 0 - Int(Rnd * 480)
  572.         Next
  573.         For s = 0 To 1
  574.             superenemyX(s) = Int(Rnd * 608)
  575.             superenemyY(s) = 0 - Int(Rnd * 480)
  576.         Next
  577.     End If
  578.     If bigexplox > 0 And bigexplox < 640 Then
  579.         bigexplo_frame = bigexplo_frame + 1
  580.     End If
  581.     If bigexplo_frame > 6 Then
  582.         bigexploactive = 0
  583.         bigexplo_frame = 0
  584.         bigexplox = -70
  585.         bigexploy = -70
  586.         lives = lives - 1
  587.         planex = 320
  588.         planey = 480 - 128
  589.         health = 100
  590.     End If
  591.     _PutImage (bigexplox, bigexploy), img(bigexplo_frame + 14)
  592.  
  593.     '   INFORMATION PANEL
  594.     '   =================
  595.     Line (0, 480 - 63)-Step(640, 63), _RGB32(220, 220, 220), BF
  596.     Line (5, 480 - 58)-Step(635, 58), _RGB32(180, 180, 180), BF
  597.     Line (5, 480 - 58)-Step(630, 58), _RGB32(120, 120, 120), BF
  598.     Line (6, 480 - 22)-Step(103, 12), _RGB32(0, 0, 255), B
  599.     Line (7, 480 - 21)-Step(100, 10), _RGB32(0, 0, 0), B
  600.     c = 143
  601.     For z = 1 To 10
  602.         Line (7, 480 - 22 + z)-(7 + health, 480 - 22 + z), _RGB32(255, c, 0)
  603.         If z > 5 Then
  604.             c = c - 44
  605.         Else
  606.             c = c + 44
  607.         End If
  608.     Next
  609.     _Font arial14
  610.     Color _RGB32(0, 0, 0), trans
  611.     _PrintString (5, 480 - 58), "Score: " + Str$(score)
  612.     _PrintString (5, 480 - 48), "Accuracy: " + Str$((bullseye / shots_fired) * 100) + "%"
  613.     For i = 1 To lives
  614.         _PutImage (120 + i * 32, 480 - 32), img(31)
  615.     Next
  616.     _PutImage (640 - width32, 480 - 58), img(32)
  617.  
  618.     '   IF ALL LIVES ARE GONE, THEN IT`S GAME OVER
  619.     '   =========================================
  620.     If lives < 0 Then
  621.         _PutImage (0, 0), img(34)
  622.         _Display
  623.         _Delay 1
  624.         System
  625.     End If
  626.  
  627.     '   DRAWING EVERYTHNG AND WAITING
  628.     '   =============================
  629.     '   AND PAUSING THE GAME IF HIS MAJESTY WANTS SO
  630.     '   ============================================
  631.     If InKey$ = "p" Or InKey$ = "P" Then
  632.         _PutImage (0, 0), img(33)
  633.         _Display
  634.         While InKey$ = "": Wend
  635.     End If
  636.  
  637.     _Limit 30
  638.     _Display
  639.  
  640.  
  641.  
  642.  
  643.  
  644. '=======================================================
  645. Sub collision (r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  646.     If (r1x + r1w >= r2x And r1x <= r2x + r2w And r1y + r1h >= r2y And r1y <= r2y + r2h) Then
  647.         hit = 1
  648.     Else
  649.         hit = 0
  650.     End If
  651.  
  652. Sub centerText (x1, x2, midy, s$) ' ' if you want to center fit a string between two goal posts x1, and x2
  653.     _PrintString ((x1 + x2) / 2 - _PrintWidth(s$) / 2, midy - _FontHeight(_Font) / 2), s$
  654.  
  655.  
Title: Re: 1945
Post by: bplus on December 07, 2021, 11:42:48 pm
Ah I see it, shouldn't 406 and 407 be changed also to SuperEnemies?
Title: Re: 1945
Post by: johnno56 on December 07, 2021, 11:58:34 pm
Well spotted. Remind me to give you a Gold Star as you move to the top of the class.... lol
Title: Re: 1945
Post by: bplus on December 08, 2021, 12:01:23 am
Yeah give yourself one too, these things so easy to overlook.

Ding dong, the glitch is dead!
Title: Re: 1945
Post by: johnno56 on December 08, 2021, 12:06:16 am
What was happening was that the Super Enemy would continue to move 'through' the player. Subtracting 25% health through every cycle. The program, detecting that the health has dropped below zero, resets all the 'enemy' and the player. Instead of resetting only the Super Enemy.

But what surprises me, is that, this existed in the original Naalaa version. I am no where near as clever as those guys yet I picked it up. Mind you, it took me ages to find it... lol

Anyway. Nuff said. Time for a coffee before I think about power ups...
Title: Re: 1945
Post by: johnno56 on December 08, 2021, 05:24:59 am
Bplus

Ok. I have simple health and ammo power/pick ups. How many rounds of ammo do you think is fair to start with and at what figure do you think the ammo should drop to before pickup and how many rounds should be added?

Rare pickups... Extra life; Bonus score; etc... anything else?

I was also toying with the idea of slightly increasing the speed of all enemy planes in relation to the score but keeping the power up speeds fixed on slow... Moo ha ha...

A high score table could be an option. That would mean a change to the main menu... and just after it has been fixed so well....
Title: Re: 1945
Post by: bplus on December 08, 2021, 08:24:54 am
Yeah I was thinking High Score Keeper also. I have some code for that and we can pop in the Player log-in at start pretty easily too.

Higher levels the enemy should start attacking the plane's position, Zero in on it so to speak!

Did you say you had ships and subs and bombs?
Title: Re: 1945
Post by: johnno56 on December 08, 2021, 04:32:29 pm
Ships; Subs; Bombs; Flying Fortresses; Torpedo Planes (obviously for the Ships and Subs) and a bunch of other stuff I have never seen before... lol

So, the short answer is , yes.

  [ This attachment cannot be displayed inline in 'Print Page' view ]  
Title: Re: 1945
Post by: johnno56 on December 11, 2021, 03:13:55 am
Ok. Here is a small update.

The game now includes power-ups for health and ammunition. After Health and Ammunition drop below a certain amount, the appropriate icon will "slowly" move down the screen. Icon 'must' be in contact with the player to register. If you have a better, or more efficient method, be my guest... Ignore the collection sound effects. I just grabbed what I had at hand... If you have a better set of sounds, I insist, that you replace them... lol

J

  [ This attachment cannot be displayed inline in 'Print Page' view ]  
Title: Re: 1945
Post by: bplus on December 11, 2021, 11:02:16 am
OK to tie shooting in with ammo status you need this:
Code: QB64: [Select]
  1.     If _KeyDown(32) Then
  2.         ' find inactive bullet
  3.         If Timer - lastFire > .4 And ammo > 0 Then   ' <<<< check if you have ammo before starting another bullet
  4.             For i = 1 To nBullets
  5.                 If bullets(i).active = 0 Then
  6.                     bullets(i).x = planex + 27 ' 17
  7.                     bullets(i).y = planey + 5
  8.                     bullets(i).active = -1
  9.                     _SndPlay (shoot)
  10.                     shots_fired = shots_fired + 1
  11.                     ammo = ammo - 1
  12.                     lastFire = Timer(.001)
  13.                     Exit For
  14.                 End If
  15.             Next
  16.         End If
  17.     End If
  18.  
Title: Re: 1945
Post by: bplus on December 11, 2021, 08:44:41 pm
I added Top Ten score keeper, very rudimentary but we can fix up if you like
Code: QB64: [Select]
  1. ' 1945qb translated by Johnno from Naalaa
  2. '2021-12-06 bplus mod splash screen / menu
  3. '2021-12-07 bplus give the players plane more than 1 bullet!
  4.  
  5. xmax = 640
  6. ymax = 480
  7. _Title "1945"
  8.  
  9. Screen _NewImage(xmax, ymax, 32)
  10.  
  11. '   ARRAYS
  12. Dim backgroundX(21)
  13. Dim backgroundY(16)
  14. Dim transitionX(21)
  15. Dim transitionY(16)
  16. Dim enemyX(5)
  17. Dim enemyY(5)
  18. Dim superenemyX(5)
  19. Dim superenemyY(5)
  20. Dim decision(2)
  21. Dim enemybulletX(2)
  22. Dim enemybulletY(2)
  23. Dim enemyshot(2)
  24. Dim islandImage(3)
  25. Dim islandX(3)
  26. Dim islandY(3)
  27. Dim img(60)
  28.  
  29.  
  30.  
  31. trans = _RGBA32(0, 0, 0, 0)
  32.  
  33. width0 = 65
  34. height0 = 65
  35. width3 = 9
  36. height3 = 19
  37. width5 = 32
  38. height5 = 32
  39. width27 = 5
  40. height27 = 5
  41. width28 = 94
  42. height28 = 31
  43. width29 = 6
  44. height29 = 11
  45. width30 = 278
  46. height30 = 141
  47. width32 = 115
  48. height32 = 58
  49.  
  50. width35 = 32
  51. height35 = 32
  52. width36 = 32
  53. height36 = 32
  54.  
  55. quit = 0
  56. dead = false
  57. hit = 0
  58. ammo = 300
  59.  
  60. repairActive = 0
  61. ammoActive = 0
  62.  
  63. '   LOAD ASSETS
  64. '   ===========
  65.  
  66. '   Images
  67. '
  68. img(0) = _LoadImage("data/plane1.png")
  69. img(1) = _LoadImage("data/plane2.png")
  70. img(2) = _LoadImage("data/plane3.png")
  71. img(3) = _LoadImage("data/bullet.png")
  72. img(4) = _LoadImage("data/sea.png")
  73. img(5) = _LoadImage("data/enemy1.png")
  74. img(6) = _LoadImage("data/enemy2.png")
  75. img(7) = _LoadImage("data/enemy3.png")
  76. img(8) = _LoadImage("data/explosion1.png")
  77. img(9) = _LoadImage("data/explosion2.png")
  78. img(10) = _LoadImage("data/explosion3.png")
  79. img(11) = _LoadImage("data/explosion4.png")
  80. img(12) = _LoadImage("data/explosion5.png")
  81. img(13) = _LoadImage("data/explosion6.png")
  82. img(14) = _LoadImage("data/bigexplosion1.png")
  83. img(15) = _LoadImage("data/bigexplosion2.png")
  84. img(16) = _LoadImage("data/bigexplosion3.png")
  85. img(17) = _LoadImage("data/bigexplosion4.png")
  86. img(18) = _LoadImage("data/bigexplosion5.png")
  87. img(19) = _LoadImage("data/bigexplosion6.png")
  88. img(20) = _LoadImage("data/bigexplosion7.png")
  89. img(21) = _LoadImage("data/island1.png")
  90. img(22) = _LoadImage("data/island2.png")
  91. img(23) = _LoadImage("data/island3.png")
  92. img(24) = _LoadImage("data/superenemy1.png")
  93. img(25) = _LoadImage("data/superenemy2.png")
  94. img(26) = _LoadImage("data/superenemy3.png")
  95. img(27) = _LoadImage("data/enemybullet.png")
  96. img(28) = _LoadImage("data/menu.png")
  97. img(29) = _LoadImage("data/arrow.png")
  98. img(30) = _LoadImage("data/biglogo.png")
  99. img(31) = _LoadImage("data/life.png")
  100. img(32) = _LoadImage("data/logo.png")
  101. img(33) = _LoadImage("data/paused.png")
  102. img(34) = _LoadImage("data/gameover.png")
  103.  
  104. '   Power ups
  105. img(35) = _LoadImage("data/repair.png") '   health
  106. img(36) = _LoadImage("data/ammo.png") '     ammunition
  107.  
  108. '   Sounds
  109. '
  110. shoot = _SndOpen("data/shoot.wav")
  111. explosion = _SndOpen("data/explosion.wav")
  112. collide = _SndOpen("data/collide.wav")
  113. plane_shot = _SndOpen("data/plane_shot.wav")
  114. pu_health = _SndOpen("data/health.wav")
  115. pu_ammo = _SndOpen("data/ammo.wav")
  116.  
  117. '   Fonts
  118. '
  119. arial14 = _LoadFont("data/arial.ttf", 14)
  120. War60 = _LoadFont("data/armalite.ttf", 60)
  121. War12 = _LoadFont("data/armalite.ttf", 12)
  122.  
  123. '   TILING THE BACKGROUND
  124. '   =====================
  125. 'backgroundX((640 / 32) + 1)
  126. 'backgroundY((480 / 32) + 1)
  127. 'transitionX((640 / 32) + 1)
  128. 'transitionY((480 / 32) + 1)
  129. For i = 0 To 640 / 32
  130.     backgroundX(i) = i * 32
  131.     transitionX(i) = i * 32
  132.     For a = 0 To 480 / 32
  133.         backgroundY(a) = a * 32
  134.         transitionY(a) = a * 32
  135.     Next
  136.  
  137.  
  138. '   A GAME MENU TO START WITH
  139. '   =========================
  140. menu = 0
  141. Color _RGB32(150, 0, 0)
  142.     Cls
  143.  
  144.  
  145.     '_PutImage ((640 - width30) / 2, 5), img(30)
  146.     _PutImage , img(30) ' full screen image
  147.  
  148.     If menu = 0 Then
  149.         _Font War60
  150.         Color _RGB32(255, 255, 255)
  151.         centerText 0, _Width, ymax * .6, "Play Game"
  152.         Color _RGB32(70, 0, 0)
  153.         _Font War12
  154.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  155.     Else
  156.         _Font War12
  157.         Color _RGB32(70, 0, 0)
  158.         centerText 0, _Width, ymax * .6, "Play Game"
  159.         _Font War60
  160.         Color _RGB32(255, 255, 255)
  161.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  162.     End If
  163.  
  164.     '_PutImage ((640 - width28) / 2, height30 + 30), img(28)
  165.     '_PutImage (((640 - width28) / 2) - width29, height30 + (30 + menu * 19)), img(29)
  166.     k& = _KeyHit
  167.     If k& = (18432) Then
  168.         menu = menu - 1
  169.     End If
  170.     If k& = (20480) Then
  171.         menu = menu + 1
  172.     End If
  173.  
  174.     If menu > 1 Then
  175.         menu = 0
  176.     End If
  177.     If menu < 0 Then
  178.         menu = 1
  179.     End If
  180.  
  181.     If _KeyDown(32) And menu = 0 Then
  182.         Exit Do
  183.     End If
  184.     If _KeyDown(32) And menu = 1 Then
  185.         For i = 0 To 640 / 32
  186.             For z = 0 To 480 / 32
  187.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  188.                 _Display
  189.                 _Limit 300
  190.             Next
  191.         Next
  192.         _PutImage (0, 0), img(34)
  193.         _Display
  194.         _Delay 1
  195.         System 'ExitGame()
  196.     End If
  197.     _Display
  198.     _Limit 20
  199.  
  200. For i = 0 To 640 / 32
  201.     For z = 0 To 480 / 32
  202.         _PutImage (transitionX(i), transitionY(z)), img(4)
  203.         _Display
  204.         _Delay 0.01
  205.     Next
  206.  
  207. restart:
  208. _Font arial14
  209. '   INITIALIZING VARIABLES
  210. '   =================================
  211. nBullets = 100
  212. Type bullet
  213.     As Single x, y, active
  214. ReDim bullets(1 To nBullets) As bullet
  215.  
  216. frame = 0
  217. explo_frame = 0
  218. bigexplo_frame = 0
  219. bigexplox = -70
  220. bigexploy = -70
  221. explo2_frame = 0
  222. speed = 6
  223. scrollspeed = 1
  224. planex = 320
  225. planey = 480 - 128
  226. enemyshot(0) = 0
  227. enemyshot(1) = 0
  228. shot = 0
  229. explox = -30
  230. exploy = -30
  231. explo2x = -30
  232. explo2y = -30
  233. score = 0
  234. lives = 3
  235. health = 100
  236. bullseye = 1
  237. shots_fired = 1
  238. bigexploactive = 0
  239.  
  240.  
  241. '   SETTING THE POSITIONS OF THE ENEMY PLANES
  242. '   =========================================
  243. For i = 0 To 4
  244.     enemyX(i) = Int(Rnd * 608)
  245.     enemyY(i) = 0 - Int(Rnd * 480) - 32
  246. For i = 0 To 1
  247.     superenemyX(i) = Int(Rnd * 608)
  248.     superenemyY(i) = 0 - Int(Rnd * 480) - 32
  249.     enemybulletX(i) = superenemyX(i) + 13
  250.     enemybulletY(i) = superenemyY(i) + 17
  251.  
  252. '   SETTING THE POSITIONS AND STARTING IMAGES OF THE ISLANDS
  253. '   ========================================================
  254. For i = 0 To 2
  255.     islandX(i) = Int(Rnd * 576)
  256.     islandY(i) = 0 - Int(Rnd * 480)
  257.     islandImage(i) = img(i + 21)
  258.  
  259. '   SETUP POWER UPS
  260. '   ===============
  261. repairX = Int(Rnd * 608)
  262. repairY = 0 - Int(Rnd * 480)
  263. repairSpeed = 2
  264.  
  265. ammoX = Int(Rnd * 608)
  266. ammoY = 0 - Int(Rnd * 480)
  267. ammoSpeed = 2
  268.  
  269. '   THE 'ACTUAL' GAME LOOP
  270. '   ======================
  271.     If quit = 1 Then
  272.         For i = 0 To 640 / 32
  273.             For z = 0 To 480 / 32
  274.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  275.                 _Display
  276.  
  277.             Next
  278.         Next
  279.         _PutImage (0, 0), img(34)
  280.         _Display
  281.         _Delay 1
  282.         Exit Do
  283.     End If
  284.  
  285.     '   CLEARING THE SCREEN
  286.     '   ===================
  287.     Cls
  288.  
  289.     '   MOVING THE PLAYER WITH THE ARROW KEYS
  290.     '   =====================================
  291.     '   OH, AND SHOOTING WITH THE SPACEBAR
  292.     '   ==================================
  293.     If _KeyDown(27) Then
  294.         End
  295.     End If
  296.     If _KeyDown(18432) Then
  297.         planey = planey - speed
  298.     End If
  299.     If _KeyDown(20480) Then
  300.         planey = planey + 4
  301.     End If
  302.     If _KeyDown(19200) Then
  303.         planex = planex - speed
  304.     End If
  305.     If _KeyDown(19712) Then
  306.         planex = planex + speed
  307.     End If
  308.     If _KeyDown(32) Then
  309.         ' find inactive bullet
  310.         If Timer - lastFire > .4 Then
  311.             For i = 1 To nBullets
  312.                 If bullets(i).active = 0 Then
  313.                     bullets(i).x = planex + 27 ' 17
  314.                     bullets(i).y = planey + 5
  315.                     bullets(i).active = -1
  316.                     _SndPlay (shoot)
  317.                     shots_fired = shots_fired + 1
  318.                     ammo = ammo - 1
  319.                     lastFire = Timer(.001)
  320.                     Exit For
  321.                 End If
  322.             Next
  323.         End If
  324.     End If
  325.  
  326.     '   MOVING THE ENEMY PLANES
  327.     '   =======================
  328.     For z = 0 To 4
  329.         If enemyY(z) > 480 Then
  330.             enemyX(z) = Int(Rnd * 608)
  331.             enemyY(z) = 0 - Int(Rnd * 480)
  332.         Else
  333.             enemyY(z) = enemyY(z) + speed
  334.         End If
  335.     Next
  336.     For z = 0 To 1
  337.         If superenemyY(z) > 480 Then
  338.             superenemyX(z) = Int(Rnd * 608)
  339.             superenemyY(z) = 0 - Int(Rnd * 480)
  340.         Else
  341.             superenemyY(z) = superenemyY(z) + speed
  342.         End If
  343.     Next
  344.  
  345.     '   MOVING THE ISLANDS
  346.     '   ==================
  347.     For z = 0 To 2
  348.         If islandY(z) > 480 Then
  349.             islandX(z) = Int(Rnd * 576)
  350.             islandY(z) = 0 - Int(Rnd * 480)
  351.             islandImage(z) = img(Int(Rnd * 3) + 21)
  352.         Else
  353.             islandY(z) = islandY(z) + 3
  354.         End If
  355.     Next
  356.  
  357.     '   CHECKING WHEN WE BEAT OR BEING BEATEN
  358.     '   =====================================
  359.     For t = 0 To 4
  360.         '   Collision with enemy?
  361.         collision planex, planey, width0, height0, enemyX(t), enemyY(t), width5, height5
  362.         If hit = 1 Then
  363.             'collision(r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  364.             If explox > 0 Then
  365.                 explo2x = enemyX(t)
  366.                 explo2y = enemyY(t)
  367.             Else
  368.                 explox = enemyX(t)
  369.                 exploy = enemyY(t)
  370.             End If
  371.             _SndPlay (explosion)
  372.             enemyX(t) = Int(Rnd * 608)
  373.             enemyY(t) = 0 - Int(Rnd * 480)
  374.             health = health - 25
  375.             If health <= 0 Then
  376.                 bigexploactive = 1
  377.                 bigexplox = planex
  378.                 bigexploy = planey
  379.                 planex = -70
  380.                 planey = -70
  381.             End If
  382.             enemyX(t) = Int(Rnd * 608)
  383.             enemyY(t) = 0 - Int(Rnd * 480)
  384.         End If
  385.  
  386.  
  387.         'If shot = 1 Then
  388.         For i = 1 To nBullets
  389.             '   Collision with player bullet and enemy
  390.             collision bullets(i).x, bullets(i).y, width3, height3, enemyX(t), enemyY(t), width5, height5
  391.             If hit = 1 Then
  392.                 If explox > 0 Then
  393.                     explo2x = enemyX(t)
  394.                     explo2y = enemyY(t)
  395.                 Else
  396.                     explox = enemyX(t)
  397.                     exploy = enemyY(t)
  398.                 End If
  399.                 _SndPlay (explosion)
  400.                 enemyX(t) = Int(Rnd * 608)
  401.                 enemyY(t) = 0 - Int(Rnd * 480)
  402.                 bullets(i).x = -30
  403.                 bullets(i).y = -30
  404.                 bullets(i).active = 0
  405.                 score = score + 50
  406.                 bullseye = bullseye + 1
  407.             End If
  408.             'End If
  409.         Next
  410.     Next
  411.     For t = 0 To 1
  412.         '   Collision with player and superenemy
  413.         collision planex, planey, width0, height0, superenemyX(t), superenemyY(t), width5, height5
  414.         If hit = 1 Then
  415.             If explox > 0 Then
  416.                 explo2x = superenemyX(t)
  417.                 explo2y = superenemyY(t)
  418.             Else
  419.                 explox = superenemyX(t)
  420.                 exploy = superenemyY(t)
  421.             End If
  422.             _SndPlay (explosion)
  423.             superenemyX(t) = Int(Rnd * 608)
  424.             superenemyY(t) = 0 - Int(Rnd * 480)
  425.             health = health - 25
  426.             If health <= 0 Then
  427.                 bigexploactive = 1
  428.                 bigexplox = planex
  429.                 bigexploy = planey
  430.                 planex = -70
  431.                 planey = -70
  432.             End If
  433.             superenemyX(t) = Int(Rnd * 608)
  434.             superenemyY(t) = 0 - Int(Rnd * 480)
  435.         End If
  436.  
  437.  
  438.         '   Collision with player bullet and superenemy
  439.         For i = 1 To nBullets
  440.             collision bullets(i).x, bullets(i).y, width3, height3, superenemyX(t), superenemyY(t), width5, height5
  441.             If hit = 1 Then
  442.                 If explox > 0 Then
  443.                     explo2x = superenemyX(t)
  444.                     explo2y = superenemyY(t)
  445.                 Else
  446.                     explox = superenemyX(t)
  447.                     exploy = superenemyY(t)
  448.                 End If
  449.                 _SndPlay (explosion)
  450.                 superenemyX(t) = Int(Rnd * 608)
  451.                 superenemyY(t) = 0 - Int(Rnd * 480)
  452.                 bullets(i).x = -30
  453.                 bullets(i).y = -30
  454.                 bullets(i).active = 0
  455.                 score = score + 100
  456.                 bullseye = bullseye + 1
  457.             End If
  458.         Next
  459.     Next
  460.     For t = 0 To 1
  461.         '   Collision with player and enemy bullet
  462.         If enemyshot(t) = 1 Then
  463.             collision planex, planey, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  464.             If hit = 1 Then
  465.                 health = health - 10
  466.                 If health <= 0 Then
  467.                     bigexploactive = 1
  468.                     bigexplox = planex
  469.                     bigexploy = planey
  470.                     enemybulletX(t) = -30 'had players bullets here!!!
  471.                     enemybulletY(t) = -30
  472.                 End If
  473.                 _SndPlay (explosion)
  474.                 If explox > 0 And explox < 640 Then
  475.                     explox2 = enemybulletX(t)
  476.                     exploy2 = enemybulletY(t)
  477.                 Else
  478.                     explox = enemybulletX(t)
  479.                     exploy = enemybulletY(t)
  480.                 End If
  481.                 enemybulletX(t) = superenemyX(t) + 14 '1
  482.                 enemybulletY(t) = superenemyY(t) + 17 '7
  483.                 enemyshot(t) = 0
  484.             End If
  485.         End If
  486.     Next
  487.  
  488.  
  489.     '   FLYING OVER THE ENDLESSLY SCROLLING SEA
  490.     '   =======================================
  491.     For w = 0 To 15
  492.         backgroundY(w) = backgroundY(w) + 3
  493.         If backgroundY(w) > 480 Then
  494.             backgroundY(w) = backgroundY(w) - 512
  495.         End If
  496.         For q = 0 To 19
  497.             _PutImage (backgroundX(q), backgroundY(w)), img(4)
  498.         Next
  499.     Next
  500.  
  501.     '   WHICH LOOKS DULL WITHOUT ISLANDS
  502.     '   ================================
  503.     For o = 0 To 2
  504.         _PutImage (islandX(o), islandY(o)), islandImage(o)
  505.     Next
  506.  
  507.     '   KEEPING OUR PLANE IN THE SCREEN AND DISPLAY IT
  508.     '   ==============================================
  509.     frame = frame + 1
  510.     If frame > 2 Then
  511.         frame = 0
  512.     End If
  513.     If planex < 0 And bigexploactive = 0 Then
  514.         planex = 0
  515.     End If
  516.     If planey < 0 And bigexploactive = 0 Then
  517.         planey = 0
  518.     End If
  519.     If planex + width0 > 640 Then
  520.         planex = 640 - width0
  521.     End If
  522.     If planey + height0 > 480 - 64 Then
  523.         planey = 480 - height0 - 64
  524.     End If
  525.     _PutImage (planex, planey), img(frame)
  526.  
  527.     '   WE HAVE TO SEE WHAT WE ARE FIGHTING
  528.     '   ===================================
  529.     For x = 0 To 4
  530.         _PutImage (enemyX(x), enemyY(x)), img(frame + 5)
  531.     Next
  532.     For i = 0 To 1
  533.         If enemyshot(i) = 0 Then
  534.             decision(i) = Int(Rnd * 199)
  535.         End If
  536.         If decision(i) = 9 Then
  537.             If enemybulletY(i) < 480 Then
  538.                 enemybulletY(i) = enemybulletY(i) + 10
  539.                 enemyshot(i) = 1
  540.             Else
  541.                 enemybulletX(i) = superenemyX(i) + 14 '1
  542.                 enemybulletY(i) = superenemyY(i) + 17 '7
  543.                 enemyshot(i) = 0
  544.             End If
  545.         Else
  546.             enemybulletX(i) = superenemyX(i) + 14 '1
  547.             enemybulletY(i) = superenemyY(i) + 17 '7
  548.             enemyshot(i) = 0
  549.         End If
  550.         If superenemyY(i) > 0 Then
  551.             _PutImage (enemybulletX(i), enemybulletY(i)), img(27)
  552.         End If
  553.     Next
  554.     For x = 0 To 1
  555.         _PutImage (superenemyX(x), superenemyY(x)), img(frame + 24)
  556.     Next
  557.  
  558.     '   AND WITH WHAT
  559.     '   =============
  560.     For j = 1 To nBullets
  561.         If bullets(j).y > 0 And bullets(j).active Then
  562.             bullets(j).y = bullets(j).y - speed * 2
  563.             _PutImage (bullets(j).x, bullets(j).y), img(3)
  564.         Else
  565.             bullets(j).x = -30
  566.             bullets(j).y = -30
  567.             bullets(j).active = 0
  568.         End If
  569.     Next
  570.  
  571.     '   A NICE EXPLOSION
  572.     '   ================
  573.     If explo_frame < 5 And explox > 0 Then
  574.         explo_frame = explo_frame + 1
  575.         _PutImage (explox, exploy), img(explo_frame + 8)
  576.     Else
  577.         explo_frame = 0
  578.         explox = -30
  579.         exploy = -30
  580.     End If
  581.  
  582.     '   A SECOND NICE EXPLOSION
  583.     '   =======================
  584.     If explo2_frame < 5 And explo2x > 0 Then
  585.         explo2_frame = explo2_frame + 1
  586.         _PutImage (explo2x, explo2y), img(explo2_frame + 8)
  587.     Else
  588.         explo2_frame = 0
  589.         explo2x = -30
  590.         explo2y = -30
  591.     End If
  592.  
  593.  
  594.     '   A BIGGER EXPLOSION
  595.     '   ==================
  596.     If bigexploactive = 1 Then
  597.         For s = 0 To 4
  598.             enemyX(s) = Int(Rnd * 608)
  599.             enemyY(s) = 0 - Int(Rnd * 480)
  600.         Next
  601.         For s = 0 To 1
  602.             superenemyX(s) = Int(Rnd * 608)
  603.             superenemyY(s) = 0 - Int(Rnd * 480)
  604.         Next
  605.     End If
  606.     If bigexplox > 0 And bigexplox < 640 Then
  607.         bigexplo_frame = bigexplo_frame + 1
  608.     End If
  609.     If bigexplo_frame > 6 Then
  610.         bigexploactive = 0
  611.         bigexplo_frame = 0
  612.         bigexplox = -70
  613.         bigexploy = -70
  614.         lives = lives - 1
  615.         planex = 320
  616.         planey = 480 - 128
  617.         health = 100
  618.     End If
  619.     _PutImage (bigexplox, bigexploy), img(bigexplo_frame + 14)
  620.  
  621.  
  622.     '   Power Ups
  623.  
  624.     '   HEALTH
  625.     '
  626.     If health < 80 Then
  627.         repairActive = 1
  628.     End If
  629.     If repairActive = 1 Then
  630.         _PutImage (repairX, repairY), img(35)
  631.         repairY = repairY + repairSpeed
  632.         If repairY > ymax Then
  633.             repairActive = 0
  634.             repairX = Int(Rnd * 608)
  635.             repairY = 0 - Int(Rnd * 480)
  636.         End If
  637.     End If
  638.     collision planex, planey, width0, height0, repairX, repairY, width35, height35
  639.     If hit = 1 Then
  640.         If health < 80 Then
  641.             health = health + 20
  642.             repairX = Int(Rnd * 608)
  643.             repairY = 0 - Int(Rnd * 480)
  644.             repairActive = 0
  645.             _SndPlay (pu_health)
  646.         End If
  647.     End If
  648.  
  649.  
  650.     '   AMMUNITION
  651.     '
  652.     If ammo < 290 Then
  653.         ammoActive = 1
  654.     End If
  655.     If ammoActive = 1 Then
  656.         _PutImage (ammoX, ammoY), img(36)
  657.         ammoY = ammoY + ammoSpeed
  658.         If ammoY > ymax Then
  659.             ammoActive = 0
  660.             ammoX = Int(Rnd * 608)
  661.             ammoY = 0 - Int(Rnd * 480)
  662.         End If
  663.     End If
  664.     collision planex, planey, width0, height0, ammoX, ammoY, width36, height36
  665.     If hit = 1 Then
  666.         If ammo < 290 Then
  667.             ammo = ammo + 10
  668.             ammoX = Int(Rnd * 608)
  669.             ammoY = 0 - Int(Rnd * 480)
  670.             ammoActive = 0
  671.             _SndPlay (pu_ammo)
  672.         End If
  673.     End If
  674.  
  675.  
  676.     '   INFORMATION PANEL
  677.     '   =================
  678.     Line (0, 480 - 63)-Step(640, 63), _RGB32(220, 220, 220), BF
  679.     Line (5, 480 - 58)-Step(635, 58), _RGB32(180, 180, 180), BF
  680.     Line (5, 480 - 58)-Step(630, 58), _RGB32(120, 120, 120), BF
  681.     Line (6, 480 - 22)-Step(103, 12), _RGB32(0, 0, 255), B
  682.     Line (7, 480 - 21)-Step(100, 10), _RGB32(0, 0, 0), B
  683.     c = 143
  684.     For z = 1 To 10
  685.         Line (7, 480 - 22 + z)-(7 + health, 480 - 22 + z), _RGB32(255, c, 0)
  686.         If z > 5 Then
  687.             c = c - 44
  688.         Else
  689.             c = c + 44
  690.         End If
  691.     Next
  692.     _Font arial14
  693.     Color _RGB32(0, 0, 0), trans
  694.     _PrintString (5, 480 - 58), "Score: " + Str$(score)
  695.     _PrintString (5, 480 - 48), "Accuracy: " + Str$((bullseye / shots_fired) * 100) + "%"
  696.     _PrintString (300, 480 - 48), "Ammo: " + Str$(ammo)
  697.     For i = 1 To lives
  698.         _PutImage (120 + i * 32, 480 - 32), img(31)
  699.     Next
  700.     _PutImage (640 - width32, 480 - 58), img(32)
  701.  
  702.     '   IF ALL LIVES ARE GONE, THEN IT`S GAME OVER
  703.     '   =========================================
  704.     If lives < 0 Then
  705.         _PutImage (0, 0), img(34)
  706.         _Display
  707.         _Delay 1
  708.         Exit Do
  709.     End If
  710.  
  711.     '   DRAWING EVERYTHNG AND WAITING
  712.     '   =============================
  713.     '   AND PAUSING THE GAME IF HIS MAJESTY WANTS SO
  714.     '   ============================================
  715.     If InKey$ = "p" Or InKey$ = "P" Then
  716.         _PutImage (0, 0), img(33)
  717.         _Display
  718.         While InKey$ = "": Wend
  719.     End If
  720.  
  721.     _Limit 30
  722.     _Display
  723. goAgain$ = topTenGoAgain$(score)
  724. If Len(goAgain$) = 0 Then GoTo restart
  725.  
  726.  
  727. '=======================================================
  728. Sub collision (r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  729.     If (r1x + r1w >= r2x And r1x <= r2x + r2w And r1y + r1h >= r2y And r1y <= r2y + r2h) Then
  730.         hit = 1
  731.     Else
  732.         hit = 0
  733.     End If
  734.  
  735. Sub centerText (x1, x2, midy, s$) ' ' if you want to center fit a string between two goal posts x1, and x2
  736.     _PrintString ((x1 + x2) / 2 - _PrintWidth(s$) / 2, midy - _FontHeight(_Font) / 2), s$
  737.  
  738. ' This FUNCTION creates a file in the same folder as your .bas source or .exe
  739. 'EDIT: 2019-07-29 change to FUNCTION to combine Top Ten update functions with Go Again reply.
  740. Function topTenGoAgain$ (compareScore As Integer)
  741.     Dim fName$, n As Integer, names$(1 To 10), scores(1 To 10), name$, score As Integer
  742.     Dim settleScore As Integer, i As Integer, dummy$
  743.     Color &HFFFFFFFF, &HFF000000
  744.  
  745.     fName$ = "Top 10 Scores for 1945.txt" '<<<  since this is toolbox code change this as needed for app
  746.     Cls: Print: Print "Your score was:"; compareScore: Print: Print "Top Ten Scorers and Scores:"
  747.     If _FileExists(fName$) Then
  748.         Open fName$ For Input As #1
  749.         While EOF(1) = 0 And n < 10
  750.             n = n + 1
  751.             Input #1, name$
  752.             Input #1, score
  753.             If compareScore >= score And settleScore = 0 Then
  754.                 Print "You have made the Top Ten!"
  755.                 Input "Type your name here: ", names$(n)
  756.                 scores(n) = compareScore
  757.                 settleScore = -1
  758.                 n = n + 1
  759.                 If n <= 10 Then names$(n) = name$: scores(n) = score
  760.             Else
  761.                 scores(n) = score: names$(n) = name$
  762.             End If
  763.         Wend
  764.         Close #1
  765.         If n < 10 And settleScore = 0 Then
  766.             Print "There is a slot open for your name and score."
  767.             Input "Enter your name here (nothing quits): ", name$
  768.             If name$ <> "" Then
  769.                 n = n + 1: names$(n) = name$: scores(n) = compareScore
  770.             Else
  771.                 System
  772.             End If
  773.         End If
  774.         Open fName$ For Output As #1
  775.         If n > 10 Then n = 10
  776.         For i = 1 To n
  777.             Print #1, names$(i): Print #1, scores(i)
  778.             Print i, names$(i), scores(i)
  779.         Next
  780.         Close #1
  781.     Else
  782.         Print "You are first into file!"
  783.         Input "Enter your name here (nothing quits):"; name$
  784.         If name$ = "" Then System
  785.         Open fName$ For Output As #1
  786.         Print #1, name$: Print #1, compareScore
  787.         Close #1
  788.     End If
  789.     Print: Input "Press Enter to play again, any + Enter to quit... "; dummy$
  790.     topTenGoAgain$ = dummy$
  791.  
  792.  
  793.  

I ran into that glitch again while testing code plus when you exit with End or System you just hang with a black screen until you hit a key.
Title: Re: 1945
Post by: johnno56 on December 12, 2021, 05:37:39 am
I ran into the same glitch.

I was trying to refine the 'hit boxes' of the images... Tested by drawing a box around all the sprites. Found some collision area were a little too generous. But, what I did notice, was the enemy bullets were showing up at the very top of the screen then vanished.

About line #564  "If superenemyY(i) > 0 then" was changed to "If superenemyY(i) > 0 and enemyshot(i) then"

I have played many times since and the glitch no longer appears. I do not know if the above fix has soled the problem or I was just extremely lucky by not repeating the condition that may have caused said glitch.

In refining the hit boxes, some data and images were modified.

J

  [ This attachment cannot be displayed inline in 'Print Page' view ]  
Title: Re: 1945
Post by: Aurel on December 12, 2021, 01:30:07 pm
hi johnno B++

I just download your zip and compile with v1.5
at first game not respond then i figured that is started without data folder
then i add data folder in same folder where is created exe and voila game start...
well ...looking strange at first because it is in full screen (i remember versions in windowed mode)
this one work very well...
Title: Re: 1945
Post by: bplus on December 12, 2021, 02:00:13 pm
Yikes glitch on first run of v5. The Health was -35 and our plane was gone and line on top had all kinds of flashes of planes displayed and gone. Moving left and right maybe up, down, I jiggled the thing onto next plane life and was able to continue game from there.
Title: Re: 1945
Post by: johnno56 on December 12, 2021, 02:27:52 pm
Aurel,

Good to know. Thank you.

Bplus,

I knew it! I just knew it!  Looks like it was blind luck on my part... Died on the first try? The second try?

I have been updating the rcbasic version as well... The only problem I had was the "rapid firing". RC recognises "Timer" but not "Timer(.001)". At the moment, RC, has "normal" shooting... but that's another story... Yes. Back to the updating of RC... No glitches whatsoever... That would indicate that my ability to convert Naalaa to QB is questionable at best. Back to the drawing board... *sigh*  So much for version 5....
Title: Re: 1945
Post by: bplus on December 12, 2021, 03:04:15 pm
@johnno56

I am wondering how things can continue when the health < 0, for several frames this continued. I suspect a simple little logic error or missed check somewhere.

For RC timer, if you can't get a timer below parts of a second, how about counting loops before allowing a bullet to be fired. ie fired a bullet, fired = 10 and fired =fired - 1 each loop if fired < 0 then another bullet allowed. I think I will try that now, today.

PS I worked the green Health Bar to show more 3D coloring of green, first get rid of red, 2nd start at 50 not 143 3rd increment colors by 50.

It's possible when set something off to side, things are still colliding with it. Should not be necessary to move things to the side but to check both objects are active before display or collision checks.
Title: Re: 1945
Post by: johnno56 on December 12, 2021, 03:53:46 pm
I have created an "ExitGame" routine (except for running out of lives - gotta keep the high scores...) and error trapping. Escaping from all other screens will exit the game.

I am not getting any negative values for health... "Several frames"? Probably why I did not see it... lol

Any improvements to the "Panel" would be great... The original did look a little, shall we say, spartan.

Moving objects "off to the side" is the direct result of the conversion. Poor excuse saying, "That is how the original was coded". Appreciate anything you can do to correct that.

Oh. I have also modified the ammo and health power-ups. As well as the normal reasons for dropping the power-ups, I have also included a random number to drop the power-ups. Not sure how that will effect the CPU... Not overly familiar with QB64 timer function to make it more efficient.

  [ This attachment cannot be displayed inline in 'Print Page' view ]  

ps: Let us hope you will last longer than one game... lol
Title: Re: 1945
Post by: bplus on December 12, 2021, 05:28:15 pm
Dang! you have v6 up, oh well working from v5 I did this:

Bullets off the timer now optional after 10 frames from last fired.
I have reworked much running everything under Option _Explicit. Removed 2 variables abandoned, DIM'd a million more and found a typo explox2 supposed to be explo2X. I reduced ammo to 100 same as max bullets that can be active and increased repairs to 50 because usually lose more trying to get repair!! I made bullet hits same loss as collision so if you hear 4 hits, you know goodbye plane:

 
Code: QB64: [Select]
  1. ' 1945qb translated by Johnno from Naalaa
  2. '2021-12-06 bplus mod splash screen / menu
  3. '2021-12-07 bplus give the players plane more than 1 bullet!
  4. '2021-12-11 bplus added Top Ten Score tracker combined with Go again function v4
  5. ' from v5 johnno's fixed collision rectangles
  6. '2021-12-12 bplus allows bullet if 10 frames have passed since last, fired, variable
  7. '2021-12-12 bplus review all variables under Option _Explicit and search
  8. ' removed quit, dead variables found typo explox2 supposed to be explo2x
  9. ' decreased ammo to 100 same as max active bullets
  10. ' increased health +50 because loose health getting to health st it's no help!!!
  11. ' made bullet hitting plane same as crashes -25, so you hear 4 hits on plane you know goodbye plane
  12.  
  13. Const xmax = 640, ymax = 480
  14. _Title "1945"
  15.  
  16. Screen _NewImage(xmax, ymax, 32)
  17.  
  18. '   ARRAYS
  19. Dim backgroundX(21)
  20. Dim backgroundY(16)
  21. Dim transitionX(21)
  22. Dim transitionY(16)
  23. Dim enemyX(5)
  24. Dim enemyY(5)
  25. Dim superenemyX(5)
  26. Dim superenemyY(5)
  27. Dim decision(2)
  28. Dim enemybulletX(2)
  29. Dim enemybulletY(2)
  30. Dim enemyshot(2)
  31. Dim islandImage(3)
  32. Dim islandX(3)
  33. Dim islandY(3)
  34. Dim img(60)
  35.  
  36.  
  37.  
  38. trans = _RGBA32(0, 0, 0, 0)
  39.  
  40.  
  41. Dim width0, height0, width3, height3, width5, height5, width27, height27, width28, height28, width29, height29
  42. Dim width30, height30, width32, height32, width35, height35, width36, height36, ammo, repairActive, ammoActive
  43.  
  44. width0 = 57
  45. height0 = 42
  46. width3 = 9
  47. height3 = 19
  48. width5 = 32
  49. height5 = 32
  50. width27 = 5
  51. height27 = 5
  52. width28 = 94
  53. height28 = 31
  54. width29 = 6
  55. height29 = 11
  56. width30 = 278
  57. height30 = 141
  58. width32 = 115
  59. height32 = 58
  60. width35 = 18
  61. height35 = 28
  62. width36 = 18
  63. height36 = 28
  64.  
  65. hit = 0
  66. ammo = 100
  67. repairActive = 0
  68. ammoActive = 0
  69.  
  70. '   LOAD ASSETS
  71. '   ===========
  72.  
  73. '   Images
  74. '
  75. img(0) = _LoadImage("data/plane1.png")
  76. img(1) = _LoadImage("data/plane2.png")
  77. img(2) = _LoadImage("data/plane3.png")
  78. img(3) = _LoadImage("data/bullet.png")
  79. img(4) = _LoadImage("data/sea.png")
  80. img(5) = _LoadImage("data/enemy1.png")
  81. img(6) = _LoadImage("data/enemy2.png")
  82. img(7) = _LoadImage("data/enemy3.png")
  83. img(8) = _LoadImage("data/explosion1.png")
  84. img(9) = _LoadImage("data/explosion2.png")
  85. img(10) = _LoadImage("data/explosion3.png")
  86. img(11) = _LoadImage("data/explosion4.png")
  87. img(12) = _LoadImage("data/explosion5.png")
  88. img(13) = _LoadImage("data/explosion6.png")
  89. img(14) = _LoadImage("data/bigexplosion1.png")
  90. img(15) = _LoadImage("data/bigexplosion2.png")
  91. img(16) = _LoadImage("data/bigexplosion3.png")
  92. img(17) = _LoadImage("data/bigexplosion4.png")
  93. img(18) = _LoadImage("data/bigexplosion5.png")
  94. img(19) = _LoadImage("data/bigexplosion6.png")
  95. img(20) = _LoadImage("data/bigexplosion7.png")
  96. img(21) = _LoadImage("data/island1.png")
  97. img(22) = _LoadImage("data/island2.png")
  98. img(23) = _LoadImage("data/island3.png")
  99. img(24) = _LoadImage("data/superenemy1.png")
  100. img(25) = _LoadImage("data/superenemy2.png")
  101. img(26) = _LoadImage("data/superenemy3.png")
  102. img(27) = _LoadImage("data/enemybullet.png")
  103. img(28) = _LoadImage("data/menu.png")
  104. img(29) = _LoadImage("data/arrow.png")
  105. img(30) = _LoadImage("data/biglogo.png")
  106. img(31) = _LoadImage("data/life.png")
  107. img(32) = _LoadImage("data/logo.png")
  108. img(33) = _LoadImage("data/paused.png")
  109. img(34) = _LoadImage("data/gameover.png")
  110.  
  111. '   Power ups
  112. img(35) = _LoadImage("data/repair.png") '   health
  113. img(36) = _LoadImage("data/ammo.png") '     ammunition
  114.  
  115. '   Sounds
  116. '
  117. Dim As Long shoot, explosion, collide, plane_shot, pu_health, pu_ammo
  118. shoot = _SndOpen("data/shoot.wav")
  119. explosion = _SndOpen("data/explosion.wav")
  120. collide = _SndOpen("data/collide.wav")
  121. plane_shot = _SndOpen("data/plane_shot.wav")
  122. pu_health = _SndOpen("data/health.wav")
  123. pu_ammo = _SndOpen("data/ammo.wav")
  124.  
  125. '   Fonts
  126. '
  127. Dim As Long arial14, war60, war12
  128. arial14 = _LoadFont("data/arial.ttf", 14)
  129. war60 = _LoadFont("data/armalite.ttf", 60)
  130. war12 = _LoadFont("data/armalite.ttf", 12)
  131.  
  132. Dim i, a
  133.  
  134.  
  135.  
  136. '   TILING THE BACKGROUND
  137. '   =====================
  138. 'backgroundX((640 / 32) + 1)
  139. 'backgroundY((480 / 32) + 1)
  140. 'transitionX((640 / 32) + 1)
  141. 'transitionY((480 / 32) + 1)
  142. For i = 0 To 640 / 32
  143.     backgroundX(i) = i * 32
  144.     transitionX(i) = i * 32
  145.     For a = 0 To 480 / 32
  146.         backgroundY(a) = a * 32
  147.         transitionY(a) = a * 32
  148.     Next
  149.  
  150.  
  151. '   A GAME MENU TO START WITH
  152. '   =========================
  153.  
  154. Dim menu, k&, z
  155.  
  156. menu = 0
  157. Color _RGB32(150, 0, 0)
  158.     Cls
  159.  
  160.  
  161.     '_PutImage ((640 - width30) / 2, 5), img(30)
  162.     _PutImage , img(30) ' full screen image
  163.  
  164.     If menu = 0 Then
  165.         _Font war60
  166.         Color _RGB32(255, 255, 255)
  167.         centerText 0, _Width, ymax * .6, "Play Game"
  168.         Color _RGB32(70, 0, 0)
  169.         _Font war12
  170.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  171.     Else
  172.         _Font war12
  173.         Color _RGB32(70, 0, 0)
  174.         centerText 0, _Width, ymax * .6, "Play Game"
  175.         _Font war60
  176.         Color _RGB32(255, 255, 255)
  177.         centerText 0, _Width, ymax * .6 + 70, "Quit"
  178.     End If
  179.  
  180.     '_PutImage ((640 - width28) / 2, height30 + 30), img(28)
  181.     '_PutImage (((640 - width28) / 2) - width29, height30 + (30 + menu * 19)), img(29)
  182.     k& = _KeyHit
  183.     If k& = (18432) Then
  184.         menu = menu - 1
  185.     End If
  186.     If k& = (20480) Then
  187.         menu = menu + 1
  188.     End If
  189.  
  190.     If menu > 1 Then
  191.         menu = 0
  192.     End If
  193.     If menu < 0 Then
  194.         menu = 1
  195.     End If
  196.  
  197.     If _KeyDown(32) And menu = 0 Then
  198.         Exit Do
  199.     End If
  200.     If _KeyDown(32) And menu = 1 Then
  201.         For i = 0 To 640 / 32
  202.             For z = 0 To 480 / 32
  203.                 _PutImage (transitionX(i), transitionY(z)), img(4)
  204.                 _Display
  205.                 _Limit 300
  206.             Next
  207.         Next
  208.         _PutImage (0, 0), img(34)
  209.         _Display
  210.         _Delay 1
  211.         System 'ExitGame()
  212.     End If
  213.     _Display
  214.     _Limit 20
  215.  
  216. For i = 0 To 640 / 32
  217.     For z = 0 To 480 / 32
  218.         _PutImage (transitionX(i), transitionY(z)), img(4)
  219.         _Display
  220.         _Delay 0.01
  221.     Next
  222.  
  223. Dim nBullets, frame, explo_frame, bigexplo_frame, bigexploX, bigexploY, explo2_frame, speed, planeX, planeY, shot, exploX, exploY
  224. Dim explo2X, explo2Y, score, lives, health, bullseye, shots_fired, bigexploactive, repairX, repairY, repairSpeed, ammoX, ammoY, ammoSpeed
  225. Dim fired, t, w, q, o, x, j, s, c, goAgain$
  226. nBullets = 100
  227.  
  228. restart:
  229. _Font arial14
  230. '   INITIALIZING VARIABLES
  231. '   =================================
  232. ammo = 100  ' EDIT renew ammo
  233. Type bullet
  234.     As Single x, y, active
  235. ReDim bullets(1 To nBullets) As bullet
  236.  
  237. frame = 0
  238. explo_frame = 0
  239. bigexplo_frame = 0
  240. bigexploX = -70
  241. bigexploY = -70
  242. explo2_frame = 0
  243. speed = 6
  244. planeX = 320
  245. planeY = 480 - 128
  246. enemyshot(0) = 0
  247. enemyshot(1) = 0
  248. shot = 0
  249. exploX = -30
  250. exploY = -30
  251. explo2X = -30
  252. explo2Y = -30
  253. score = 0
  254. lives = 3
  255. health = 100
  256. bullseye = 1
  257. shots_fired = 1
  258. bigexploactive = 0
  259.  
  260.  
  261. '   SETTING THE POSITIONS OF THE ENEMY PLANES
  262. '   =========================================
  263. For i = 0 To 4
  264.     enemyX(i) = Int(Rnd * 608)
  265.     enemyY(i) = 0 - Int(Rnd * 480) - 32
  266. For i = 0 To 1
  267.     superenemyX(i) = Int(Rnd * 608)
  268.     superenemyY(i) = 0 - Int(Rnd * 480) - 32
  269.     enemybulletX(i) = superenemyX(i) + 13
  270.     enemybulletY(i) = superenemyY(i) + 17
  271.  
  272. '   SETTING THE POSITIONS AND STARTING IMAGES OF THE ISLANDS
  273. '   ========================================================
  274. For i = 0 To 2
  275.     islandX(i) = Int(Rnd * 576)
  276.     islandY(i) = 0 - Int(Rnd * 480)
  277.     islandImage(i) = img(i + 21)
  278.  
  279. '   SETUP POWER UPS
  280. '   ===============
  281. repairX = Int(Rnd * 608)
  282. repairY = 0 - Int(Rnd * 480)
  283. repairSpeed = 2
  284.  
  285. ammoX = Int(Rnd * 608)
  286. ammoY = 0 - Int(Rnd * 480)
  287. ammoSpeed = 2
  288.  
  289. '   THE 'ACTUAL' GAME LOOP
  290. '   ======================
  291.  
  292.     fired = fired - 1 ' >>>> use frame  count instead of timer to allow shooting a bullet
  293.  
  294.  
  295.     '   CLEARING THE SCREEN
  296.     '   ===================
  297.     Cls
  298.  
  299.     '   MOVING THE PLAYER WITH THE ARROW KEYS
  300.     '   =====================================
  301.     '   OH, AND SHOOTING WITH THE SPACEBAR
  302.     '   ==================================
  303.     If _KeyDown(27) Then
  304.         End
  305.     End If
  306.     If _KeyDown(18432) Then
  307.         planeY = planeY - speed
  308.     End If
  309.     If _KeyDown(20480) Then
  310.         planeY = planeY + 4
  311.     End If
  312.     If _KeyDown(19200) Then
  313.         planeX = planeX - speed
  314.     End If
  315.     If _KeyDown(19712) Then
  316.         planeX = planeX + speed
  317.     End If
  318.     If _KeyDown(32) Then
  319.         ' find inactive bullet
  320.         If fired < 0 And ammo > 0 Then
  321.             For i = 1 To nBullets
  322.                 If bullets(i).active = 0 Then
  323.                     bullets(i).x = planeX + 27 ' 17
  324.                     bullets(i).y = planeY + 5
  325.                     bullets(i).active = -1
  326.                     _SndPlay (shoot)
  327.                     shots_fired = shots_fired + 1
  328.                     ammo = ammo - 1
  329.                     fired = 10
  330.                     Exit For
  331.                 End If
  332.             Next
  333.         End If
  334.     End If
  335.  
  336.     '   MOVING THE ENEMY PLANES
  337.     '   =======================
  338.     For z = 0 To 4
  339.         If enemyY(z) > 480 Then
  340.             enemyX(z) = Int(Rnd * 608)
  341.             enemyY(z) = 0 - Int(Rnd * 480)
  342.         Else
  343.             enemyY(z) = enemyY(z) + speed
  344.         End If
  345.     Next
  346.     For z = 0 To 1
  347.         If superenemyY(z) > 480 Then
  348.             superenemyX(z) = Int(Rnd * 608)
  349.             superenemyY(z) = 0 - Int(Rnd * 480)
  350.         Else
  351.             superenemyY(z) = superenemyY(z) + speed
  352.         End If
  353.     Next
  354.  
  355.     '   MOVING THE ISLANDS
  356.     '   ==================
  357.     For z = 0 To 2
  358.         If islandY(z) > 480 Then
  359.             islandX(z) = Int(Rnd * 576)
  360.             islandY(z) = 0 - Int(Rnd * 480)
  361.             islandImage(z) = img(Int(Rnd * 3) + 21)
  362.         Else
  363.             islandY(z) = islandY(z) + 3
  364.         End If
  365.     Next
  366.  
  367.     '   CHECKING WHEN WE BEAT OR BEING BEATEN
  368.     '   =====================================
  369.     For t = 0 To 4
  370.         '   Collision with enemy?
  371.         collision planeX, planeY, width0, height0, enemyX(t), enemyY(t), width5, height5
  372.         If hit = 1 Then
  373.             'collision(r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  374.             If exploX > 0 Then
  375.                 explo2X = enemyX(t)
  376.                 explo2Y = enemyY(t)
  377.             Else
  378.                 exploX = enemyX(t)
  379.                 exploY = enemyY(t)
  380.             End If
  381.             _SndPlay (explosion)
  382.             enemyX(t) = Int(Rnd * 608)
  383.             enemyY(t) = 0 - Int(Rnd * 480)
  384.             health = health - 25
  385.             If health <= 0 Then
  386.                 bigexploactive = 1
  387.                 bigexploX = planeX
  388.                 bigexploY = planeY
  389.                 planeX = -70
  390.                 planeY = -70
  391.             End If
  392.             enemyX(t) = Int(Rnd * 608)
  393.             enemyY(t) = 0 - Int(Rnd * 480)
  394.         End If
  395.  
  396.  
  397.         'If shot = 1 Then
  398.         For i = 1 To nBullets
  399.             '   Collision with player bullet and enemy
  400.             collision bullets(i).x, bullets(i).y, width3, height3, enemyX(t), enemyY(t), width5, height5
  401.             If hit = 1 Then
  402.                 If exploX > 0 Then
  403.                     explo2X = enemyX(t)
  404.                     explo2Y = enemyY(t)
  405.                 Else
  406.                     exploX = enemyX(t)
  407.                     exploY = enemyY(t)
  408.                 End If
  409.                 _SndPlay (explosion)
  410.                 enemyX(t) = Int(Rnd * 608)
  411.                 enemyY(t) = 0 - Int(Rnd * 480)
  412.                 bullets(i).x = -30
  413.                 bullets(i).y = -30
  414.                 bullets(i).active = 0
  415.                 score = score + 50
  416.                 bullseye = bullseye + 1
  417.             End If
  418.             'End If
  419.         Next
  420.     Next
  421.     For t = 0 To 1
  422.         '   Collision with player and superenemy
  423.         collision planeX, planeY, width0, height0, superenemyX(t), superenemyY(t), width5, height5
  424.         If hit = 1 Then
  425.             If exploX > 0 Then
  426.                 explo2X = superenemyX(t)
  427.                 explo2Y = superenemyY(t)
  428.             Else
  429.                 exploX = superenemyX(t)
  430.                 exploY = superenemyY(t)
  431.             End If
  432.             _SndPlay (explosion)
  433.             superenemyX(t) = Int(Rnd * 608)
  434.             superenemyY(t) = 0 - Int(Rnd * 480)
  435.             health = health - 25
  436.             If health <= 0 Then
  437.                 bigexploactive = 1
  438.                 bigexploX = planeX
  439.                 bigexploY = planeY
  440.                 planeX = -70
  441.                 planeY = -70
  442.             End If
  443.             superenemyX(t) = Int(Rnd * 608)
  444.             superenemyY(t) = 0 - Int(Rnd * 480)
  445.         End If
  446.  
  447.  
  448.         '   Collision with player bullet and superenemy
  449.         For i = 1 To nBullets
  450.             collision bullets(i).x, bullets(i).y, width3, height3, superenemyX(t), superenemyY(t), width5, height5
  451.             If hit = 1 Then
  452.                 If exploX > 0 Then
  453.                     explo2X = superenemyX(t)
  454.                     explo2Y = superenemyY(t)
  455.                 Else
  456.                     exploX = superenemyX(t)
  457.                     exploY = superenemyY(t)
  458.                 End If
  459.                 _SndPlay (explosion)
  460.                 superenemyX(t) = Int(Rnd * 608)
  461.                 superenemyY(t) = 0 - Int(Rnd * 480)
  462.                 bullets(i).x = -30
  463.                 bullets(i).y = -30
  464.                 bullets(i).active = 0
  465.                 score = score + 100
  466.                 bullseye = bullseye + 1
  467.             End If
  468.         Next
  469.     Next
  470.     For t = 0 To 1
  471.         '   Collision with player and enemy bullet
  472.         If enemyshot(t) = 1 Then
  473.             collision planeX, planeY, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  474.             If hit = 1 Then
  475.                 health = health - 25
  476.                 If health <= 0 Then
  477.                     bigexploactive = 1
  478.                     bigexploX = planeX
  479.                     bigexploY = planeY
  480.                     enemybulletX(t) = -30 'had players bullets here!!!
  481.                     enemybulletY(t) = -30
  482.                 End If
  483.                 _SndPlay (explosion)
  484.                 If exploX > 0 And exploX < 640 Then
  485.                     explo2X = enemybulletX(t)
  486.                     explo2Y = enemybulletY(t)
  487.                 Else
  488.                     exploX = enemybulletX(t)
  489.                     exploY = enemybulletY(t)
  490.                 End If
  491.                 enemybulletX(t) = superenemyX(t) + 14 '1
  492.                 enemybulletY(t) = superenemyY(t) + 17 '7
  493.                 enemyshot(t) = 0
  494.             End If
  495.         End If
  496.     Next
  497.  
  498.  
  499.     '   FLYING OVER THE ENDLESSLY SCROLLING SEA
  500.     '   =======================================
  501.     For w = 0 To 15
  502.         backgroundY(w) = backgroundY(w) + 3
  503.         If backgroundY(w) > 480 Then
  504.             backgroundY(w) = backgroundY(w) - 512
  505.         End If
  506.         For q = 0 To 19
  507.             _PutImage (backgroundX(q), backgroundY(w)), img(4)
  508.         Next
  509.     Next
  510.  
  511.     '   WHICH LOOKS DULL WITHOUT ISLANDS
  512.     '   ================================
  513.     For o = 0 To 2
  514.         _PutImage (islandX(o), islandY(o)), islandImage(o)
  515.     Next
  516.  
  517.     '   KEEPING OUR PLANE IN THE SCREEN AND DISPLAY IT
  518.     '   ==============================================
  519.     frame = frame + 1
  520.     If frame > 2 Then
  521.         frame = 0
  522.     End If
  523.     If planeX < 0 And bigexploactive = 0 Then
  524.         planeX = 0
  525.     End If
  526.     If planeY < 0 And bigexploactive = 0 Then
  527.         planeY = 0
  528.     End If
  529.     If planeX + width0 > 640 Then
  530.         planeX = 640 - width0
  531.     End If
  532.     If planeY + height0 > 480 - 64 Then
  533.         planeY = 480 - height0 - 64
  534.     End If
  535.     _PutImage (planeX, planeY), img(frame)
  536.  
  537.     '   WE HAVE TO SEE WHAT WE ARE FIGHTING
  538.     '   ===================================
  539.     For x = 0 To 4
  540.         _PutImage (enemyX(x), enemyY(x)), img(frame + 5)
  541.     Next
  542.     For i = 0 To 1
  543.         If enemyshot(i) = 0 Then
  544.             decision(i) = Int(Rnd * 199)
  545.         End If
  546.         If decision(i) = 9 Then
  547.             If enemybulletY(i) < 480 Then
  548.                 enemybulletY(i) = enemybulletY(i) + 10
  549.                 enemyshot(i) = 1
  550.             Else
  551.                 enemybulletX(i) = superenemyX(i) + 14 '1
  552.                 enemybulletY(i) = superenemyY(i) + 17 '7
  553.                 enemyshot(i) = 0
  554.             End If
  555.         Else
  556.             enemybulletX(i) = superenemyX(i) + 14 '1
  557.             enemybulletY(i) = superenemyY(i) + 17 '7
  558.             enemyshot(i) = 0
  559.         End If
  560.         If superenemyY(i) > 0 Then
  561.             _PutImage (enemybulletX(i), enemybulletY(i)), img(27)
  562.         End If
  563.     Next
  564.     For x = 0 To 1
  565.         _PutImage (superenemyX(x), superenemyY(x)), img(frame + 24)
  566.     Next
  567.  
  568.     '   AND WITH WHAT
  569.     '   =============
  570.     For j = 1 To nBullets
  571.         If bullets(j).y > 0 And bullets(j).active Then
  572.             bullets(j).y = bullets(j).y - speed * 2
  573.             _PutImage (bullets(j).x, bullets(j).y), img(3)
  574.         Else
  575.             bullets(j).x = -30
  576.             bullets(j).y = -30
  577.             bullets(j).active = 0
  578.         End If
  579.     Next
  580.  
  581.     '   A NICE EXPLOSION
  582.     '   ================
  583.     If explo_frame < 5 And exploX > 0 Then
  584.         explo_frame = explo_frame + 1
  585.         _PutImage (exploX, exploY), img(explo_frame + 8)
  586.     Else
  587.         explo_frame = 0
  588.         exploX = -30
  589.         exploY = -30
  590.     End If
  591.  
  592.     '   A SECOND NICE EXPLOSION
  593.     '   =======================
  594.     If explo2_frame < 5 And explo2X > 0 Then
  595.         explo2_frame = explo2_frame + 1
  596.         _PutImage (explo2X, explo2Y), img(explo2_frame + 8)
  597.     Else
  598.         explo2_frame = 0
  599.         explo2X = -30
  600.         explo2Y = -30
  601.     End If
  602.  
  603.  
  604.     '   A BIGGER EXPLOSION
  605.     '   ==================
  606.     If bigexploactive = 1 Then
  607.         For s = 0 To 4
  608.             enemyX(s) = Int(Rnd * 608)
  609.             enemyY(s) = 0 - Int(Rnd * 480)
  610.         Next
  611.         For s = 0 To 1
  612.             superenemyX(s) = Int(Rnd * 608)
  613.             superenemyY(s) = 0 - Int(Rnd * 480)
  614.         Next
  615.     End If
  616.     If bigexploX > 0 And bigexploX < 640 Then
  617.         bigexplo_frame = bigexplo_frame + 1
  618.     End If
  619.     If bigexplo_frame > 6 Then
  620.         bigexploactive = 0
  621.         bigexplo_frame = 0
  622.         bigexploX = -70
  623.         bigexploY = -70
  624.         lives = lives - 1
  625.         planeX = 320
  626.         planeY = 480 - 128
  627.         health = 100
  628.     End If
  629.     _PutImage (bigexploX, bigexploY), img(bigexplo_frame + 14)
  630.  
  631.  
  632.     '   Power Ups
  633.  
  634.     '   HEALTH
  635.     '
  636.     If health < 80 Then
  637.         repairActive = 1
  638.     End If
  639.     If repairActive = 1 Then
  640.         _PutImage (repairX, repairY), img(35)
  641.         repairY = repairY + repairSpeed
  642.         If repairY > ymax Then
  643.             repairActive = 0
  644.             repairX = Int(Rnd * 608)
  645.             repairY = 0 - Int(Rnd * 480)
  646.         End If
  647.     End If
  648.     collision planeX, planeY, width0, height0, repairX, repairY, width35, height35
  649.     If hit = 1 Then
  650.         If health < 100 Then
  651.             health = health + 50
  652.             If health > 100 Then health = 100
  653.             repairX = Int(Rnd * 608)
  654.             repairY = 0 - Int(Rnd * 480)
  655.             repairActive = 0
  656.             _SndPlay (pu_health)
  657.         End If
  658.     End If
  659.  
  660.  
  661.     '   AMMUNITION
  662.     '
  663.     If ammo < 90 Then
  664.         ammoActive = 1
  665.     End If
  666.     If ammoActive = 1 Then
  667.         _PutImage (ammoX, ammoY), img(36)
  668.         ammoY = ammoY + ammoSpeed
  669.         If ammoY > ymax Then
  670.             ammoX = Int(Rnd * 608)
  671.             ammoY = 0 - Int(Rnd * 480)
  672.         End If
  673.     End If
  674.     collision planeX, planeY, width0, height0, ammoX, ammoY, width36, height36
  675.     If hit = 1 Then
  676.         If ammo < 90 Then
  677.             ammo = ammo + 10
  678.             ammoX = Int(Rnd * 608)
  679.             ammoY = 0 - Int(Rnd * 480)
  680.             ammoActive = 0
  681.             _SndPlay (pu_ammo)
  682.         End If
  683.     End If
  684.  
  685.  
  686.     '   INFORMATION PANEL
  687.     '   =================
  688.     Line (0, 480 - 63)-Step(640, 63), _RGB32(220, 220, 220), BF
  689.     Line (5, 480 - 58)-Step(635, 58), _RGB32(180, 180, 180), BF
  690.     Line (5, 480 - 58)-Step(630, 58), _RGB32(120, 120, 120), BF
  691.     Line (6, 480 - 22)-Step(103, 12), _RGB32(0, 0, 255), B
  692.     Line (7, 480 - 21)-Step(100, 10), _RGB32(0, 0, 0), B
  693.     c = 50
  694.     For z = 1 To 10
  695.         Line (7, 480 - 22 + z)-(7 + health, 480 - 22 + z), _RGB32(0, c, 0)
  696.         If z > 5 Then
  697.             c = c - 50
  698.         Else
  699.             c = c + 50
  700.         End If
  701.     Next
  702.     _Font arial14
  703.     Color _RGB32(0, 0, 0), trans
  704.     _PrintString (5, 480 - 58), "Score: " + Str$(score)
  705.     _PrintString (5, 480 - 48), "Accuracy: " + Str$(Int((bullseye / shots_fired) * 100)) + "%"
  706.     _PrintString (300, 480 - 48), "Ammo: " + Str$(ammo)
  707.     _PrintString (110, 480 - 22), Str$(health)
  708.     For i = 1 To lives
  709.         _PutImage (120 + i * 32, 480 - 32), img(31)
  710.     Next
  711.     _PutImage (640 - width32, 480 - 58), img(32)
  712.  
  713.     '   IF ALL LIVES ARE GONE, THEN IT`S GAME OVER
  714.     '   =========================================
  715.     If lives < 0 Then
  716.         _PutImage (0, 0), img(34)
  717.         _Display
  718.         _Delay 1
  719.         Exit Do
  720.     End If
  721.  
  722.     '   DRAWING EVERYTHNG AND WAITING
  723.     '   =============================
  724.     '   AND PAUSING THE GAME IF HIS MAJESTY WANTS SO
  725.     '   ============================================
  726.     If InKey$ = "p" Or InKey$ = "P" Then
  727.         _PutImage (0, 0), img(33)
  728.         _Display
  729.         While InKey$ = "": Wend
  730.     End If
  731.  
  732.     _Limit 30
  733.     _Display
  734. goAgain$ = topTenGoAgain$(score)
  735. If Len(goAgain$) = 0 Then GoTo restart
  736.  
  737.  
  738. '=======================================================
  739. Sub collision (r1x, r1y, r1w, r1h, r2x, r2y, r2w, r2h)
  740.     If (r1x + r1w >= r2x And r1x <= r2x + r2w And r1y + r1h >= r2y And r1y <= r2y + r2h) Then
  741.         hit = 1
  742.     Else
  743.         hit = 0
  744.     End If
  745.  
  746. Sub centerText (x1, x2, midy, s$) ' ' if you want to center fit a string between two goal posts x1, and x2
  747.     _PrintString ((x1 + x2) / 2 - _PrintWidth(s$) / 2, midy - _FontHeight(_Font) / 2), s$
  748.  
  749. ' This FUNCTION creates a file in the same folder as your .bas source or .exe
  750. 'EDIT: 2019-07-29 change to FUNCTION to combine Top Ten update functions with Go Again reply.
  751. Function topTenGoAgain$ (compareScore As Integer)
  752.     Dim fName$, n As Integer, names$(1 To 10), scores(1 To 10), name$, score As Integer
  753.     Dim settleScore As Integer, i As Integer, dummy$
  754.     Color &HFFFFFFFF, &HFF000000
  755.  
  756.     fName$ = "Top 10 Scores for 1945.txt" '<<<  since this is toolbox code change this as needed for app
  757.     Cls: Print: Print "Your score was:"; compareScore: Print: Print "Top Ten Scorers and Scores:"
  758.     If _FileExists(fName$) Then
  759.         Open fName$ For Input As #1
  760.         While EOF(1) = 0 And n < 10
  761.             n = n + 1
  762.             Input #1, name$
  763.             Input #1, score
  764.             If compareScore >= score And settleScore = 0 Then
  765.                 Print "You have made the Top Ten!"
  766.                 Input "Type your name here: ", names$(n)
  767.                 scores(n) = compareScore
  768.                 settleScore = -1
  769.                 n = n + 1
  770.                 If n <= 10 Then names$(n) = name$: scores(n) = score
  771.             Else
  772.                 scores(n) = score: names$(n) = name$
  773.             End If
  774.         Wend
  775.         Close #1
  776.         If n < 10 And settleScore = 0 Then
  777.             Print "There is a slot open for your name and score."
  778.             Input "Enter your name here (nothing quits): ", name$
  779.             If name$ <> "" Then
  780.                 n = n + 1: names$(n) = name$: scores(n) = compareScore
  781.             Else
  782.                 System
  783.             End If
  784.         End If
  785.         Open fName$ For Output As #1
  786.         If n > 10 Then n = 10
  787.         For i = 1 To n
  788.             Print #1, names$(i): Print #1, scores(i)
  789.             Print i, names$(i), scores(i)
  790.         Next
  791.         Close #1
  792.     Else
  793.         Print "You are first into file!"
  794.         Input "Enter your name here (nothing quits):"; name$
  795.         If name$ = "" Then System
  796.         Open fName$ For Output As #1
  797.         Print #1, name$: Print #1, compareScore
  798.         Close #1
  799.     End If
  800.     Print: Input "Press Enter to play again, any + Enter to quit... "; dummy$
  801.     topTenGoAgain$ = dummy$
  802.  
  803.  

if glitch wasn't from typo then it may still exist.

I started other mods earlier this afternoon they were wrong minded as i think you are using planeX, planeY for explosion locations but I don't see them so they may not have been saved or done on the last version.

Let me know if you find anything goofy.

EDIT: renew ammo on restart
Title: Re: 1945
Post by: bplus on December 14, 2021, 12:15:30 pm
@johnno56

Any confirmation on that typo I found, did it remove the glitch for you?
Title: Re: 1945
Post by: johnno56 on December 14, 2021, 07:06:21 pm
I get an "Invalid Handle" on line 170.
But img(30) is defined as "biglogo.png"

If I use _putimage(0, 0), img(30) it works... The image is the default size and sits in the top left corner. Menu works fine. I cannot understand why the image will not display as 'fullscreen'...
Title: Re: 1945
Post by: bplus on December 14, 2021, 07:16:34 pm
I get an "Invalid Handle" on line 170.
But img(30) is defined as "biglogo.png"

If I use _putimage(0, 0), img(30) it works... The image is the default size and sits in the top left corner. Menu works fine. I cannot understand why the image will not display as 'fullscreen'...

I don't get it, that's been there since your first post???

PS check your PM's

Title: Re: 1945
Post by: johnno56 on December 15, 2021, 01:41:26 am
I believe you... I checked the file/filename the array reference and the command to display it... I just now tested version 4 (it has the same commands etc) and it ran just fine... One thing that I did notice was the command at the top of the program, 'option _explicit' - How does QB64 interpret that command? Just ran the game without that command and it ran just fine... Just as confused as the old farmer who was presented with 3 shovels and told to take his pick...
Title: Re: 1945
Post by: bplus on December 15, 2021, 08:37:55 am
@johnno56

Option _Explicit should only stop you if you use an undeclared (declared with one: DIM, STATIC, REDIM, CONST) variable. No problem commenting out after checking with it on but it should not interfere with runs unless a bug with Linux use???

Option _Explicit caught the typo I am still trying to get you to notice and fix.
explo2X = -30
explo2Y = -30

used at start , but
explox2, exploy2 used later in handling explosions.

1945v6:
Code: QB64: [Select]
  1.     For t = 0 To 1
  2.         '   Collision with player and enemy bullet
  3.         If enemyshot(t) = 1 Then
  4.             collision planex, planey, width0, height0, enemybulletX(t), enemybulletY(t), width27, height27
  5.             If hit = 1 Then
  6.                 health = health - 10
  7.                 If health <= 0 Then
  8.                     bigexploactive = 1
  9.                     bigexplox = planex
  10.                     bigexploy = planey
  11.                     enemybulletX(t) = -30 'had players bullets here!!!
  12.                     enemybulletY(t) = -30
  13.                 End If
  14.                 _SndPlay (explosion)
  15.                 If explox > 0 And explox < 640 Then
  16.                     explox2 = enemybulletX(t)  '<<<<<<<<<<<<<<<<<<<<<
  17.                     exploy2 = enemybulletY(t)  ' <<<<<<<<<<<<<<<<<<
  18.                 Else
  19.                     explox = enemybulletX(t)
  20.                     exploy = enemybulletY(t)
  21.                 End If
  22.                 enemybulletX(t) = superenemyX(t) + 14 '1
  23.                 enemybulletY(t) = superenemyY(t) + 17 '7
  24.                 enemyshot(t) = 0
  25.             End If
  26.         End If
  27.     Next
  28.  

1945v6
Code: QB64: [Select]
  1.     '   A SECOND NICE EXPLOSION
  2.     '   =======================
  3.     If explo2_frame < 5 And explo2x > 0 Then
  4.         explo2_frame = explo2_frame + 1
  5.         _PutImage (explo2x, explo2y), img(explo2_frame + 8)
  6.     Else
  7.         explo2_frame = 0
  8.         explo2x = -30   ' <<<<<<<<<<<<<<<<<<<<<<<
  9.         explo2y = -30  ' <<<<<<<<<<<<<<<<<<<<<<<<<<<<
  10.     End If
  11.