Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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)
share|improve this question
Can you provide the whole code ? is kind of hard to debug with so few data. Is your game a side-scroller (like NES mario) ? You can try to debug using using the print statement, like print('update rect',self.xAccel,self.yAccel), so you can try your moves and see how the game reacts. Also if you are using the pygame.Sprite class, the blitting can be done just calling draw method on the Sprite group instance. – Not a privileged user Jul 30 '12 at 21:47

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.