Bullethose Jumper update

Bullethose Jumper update:

Added a semi reliable system for shooting, shooting delay Is not done yet (Hence the update name), but Is planned to have a debut in the next update, 
Fixed bug where the player texture would be drawn over the player jump texture (Hence the update name)

Planning is being done over how collisions will work. 
But for now I'm Ignoring that because honestly that's more math than I can handle.
This commit is contained in:
Dangrain 2025-01-10 22:01:14 +01:00 committed by GitHub
parent 91f7235c99
commit 09de98f444
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 22 additions and 6 deletions

View file

@ -14,7 +14,6 @@ function love.load()
-- It's on github
-- collision thing
wall = {x = 100, y = 100, width = 50, height = 50}
wall.sprite = love.graphics.newImage('sprites/white.png')
@ -37,6 +36,9 @@ function love.load()
agent.animations.right = anim8.newAnimation( agent.grid('1-3', 1),0.15)
agent.animations.left = anim8.newAnimation( agent.grid('1-3', 2),0.15)
agent.jumped = love.graphics.newImage('sprites/agent_jump.png')
--agent.nil_grid = love.graphics.newImage('sprites/nul.png')
--agent.animations.nul_spritesheet = anim8.newGrid( 64, 64, agent.nil_grid:getWidth(), agent.nil_grid:getHeight() )
--agent.animations.nul = anim8.newAnimation(agent.grid('1-3', 2), 0.15)
agent.width = 64
agent.height = 64
@ -46,13 +48,13 @@ function love.load()
mouseX, mouseY = 0, 0
gun = {}
gun.x = agent.x + 5
gun.y = agent.y - 5
--gun.x = agent.x + 5
--gun.y = agent.y - 5
bullet = {}
spawnBullets(0, 0, 500, 0, 100, 0, 2)
bullet_numer = 0
end
function spawnBullets(x, y, vx, vy, ax, ay, r)
@ -71,7 +73,8 @@ end
function drawBullets()
for _, bullet in ipairs(bullet) do
love.graphics.setColor(255, 174, 66)
--love.graphics.setColor(255, 174, 66)
--love.graphics.setColor(1, 0, 0)
love.graphics.circle("fill", bullet.x, bullet.y, bullet.r)
end
end
@ -93,6 +96,9 @@ end
function love.update(dt)
updateBullets(dt)
agent.y = agent.y + 0 --this is gravity here at play trust
@ -174,6 +180,7 @@ function love.update(dt)
if checkCollision(agent, wall) then
t = 0 + 1
end
-- collision checker thingy
@ -183,8 +190,10 @@ function love.update(dt)
if love.mouse.isDown(2) then
if agent.anim == agent.animations.right then
spawnBullets(gun.x, gun.y, 500, 0, 0, 0, 2)
bullet_numer = bullet_numer + 1
elseif agent.anim == agent.animations.left then
spawnBullets(gun.x, gun.y, -500, 0, 0, 0, 2)
bullet_numer = bullet_numer + 1
end
end
@ -204,12 +213,13 @@ function love.draw()
-- In versions prior to 11.0, color component values are (0, 102, 102)
love.graphics.print(agent.x, 10, 210)
love.graphics.print(int, 350, 0)
agent.anim:draw(agent.spriteSheet, agent.x, agent.y, nil, 1)
--agent.anim:draw(agent.spriteSheet, agent.x, agent.y, nil, 1)
love.graphics.rectangle("fill", wall.x, wall.y, wall.width, wall.height)
love.graphics.print(t)
love.graphics.circle("fill", gun.x, gun.y, 2)
love.graphics.print(gun.x, 10, 250)
love.graphics.print(gun.y, 10, 260)
love.graphics.print(bullet_numer, 20, 300)
love.graphics.setColor(255, 174, 66)
drawBullets()
@ -220,6 +230,12 @@ function love.draw()
love.graphics.draw(agent.jumped, agent.x, agent.y, nil, 1)
end
collider.draw()
if not isMouseDown then
agent.anim:draw(agent.spriteSheet, agent.x, agent.y, nil, 1)
end
end
function drawDottedArc(x1, y1, x2, y2)

BIN
actual game/sprites/nul.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.1 KiB