I have a long list of sprites (> 3000) that makes up the ground of my game. As my character falls towards the ground I attempt to check for a collision. I've gotten it to where it will detect the collision, but the character fluctuates up and down in a 40 or so pixel range. I have no idea what's wrong, I think it has something to do with my algorithm.
Game loop:
while 1:
screen.blit(bg, (0, 0))
Gen.chunkGroup.update()
jim.update(Gen.chunkGroup, xaccel)
pygame.display.update()
if not ticked:
clock.tick(30)
ticked = True
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
elif event.type == MOUSEBUTTONDOWN:
print(event.button, event.pos)
if event.button == 1:
for item in Gen.chunkGroup:
item.clickCheck(event.pos)
if event.type == KEYDOWN:
while event.type == KEYDOWN:
xaccel = None
if event.key == K_a:
xaccel = "l"
elif event.key == K_d:
xaccel = "r"
if pygame.event.peek(KEYUP):
break
update method:
def update(self, chunks, xA, yA = 0.932):
if xA:
if xA == "r":
self.xAccel += 1
else:
self.xAccel -= 1
else:
if self.xAccel != 0:
if self.xAccel < 0:
self.xAccel += 0.5
else:
self.xAccel -= 0.5
if pygame.sprite.spritecollideany(self, chunks) == None and yA > 0:
self.yAccel += yA
else:
if yA < 0:
self.yAccel -= yA
else:
self.rect
if self.xAccel > 5:
self.xMoved = 5
if self.yAccel > 10:
self.yMoved = 10
x = self.rect.topleft[0] + self.xAccel
y = self.rect.topleft[1] + self.yAccel
self.rect.topleft = (x, y)
screen.blit(self.image, self.rect)