Skip to main content

Lunar Panda - 1.0

Space action game featuring one brave Panda and a jetpack!


Adrian Killens
(gimpysoftware)
The year is 3016 and Pandas are now the dominant species of planet Earth. They have evolved to the point where they no longer require oxygen and can freely jetpack through the Universe without the need for cumbersome space suits and/or space ships. Amongst this God-like species exists one Panda in particular, known simply as Mr Panda, who left his home planet in search of adventure. He now flies effortlessly through space and time landing on the harsh terrains of faraway planets for the sheer fun of it.

DOWNLOAD

Changes

Links

Home Page
http://www.gimpysoftware.com

Releases

Lunar Panda 1.0 — 8 May, 2013

Pygame.org account Comments

  • Mekire 2013-05-09 01:48

    Seems like a good start and a good team. I haven't had a chance to look at the code in too much depth yet but I'll throw a few things out there.

    This:
    from pygame.locals import *
    no matter what you see elsewhere, is not good. It floods your namespace with an enormous amount of garbage.

    Now, no one likes to have to prefix everything with pygame, so my suggestion is to do something like this instead:
    import pygame as pg

    Next, people (programmers) tend to take exception to programs starting automatically in full screen. Also something about conventions; I assume you are at least familiar with PEP8, but things declared in your global namespace (which sure better be CONSTANTS) should be written in all caps. This way if someone sees one of these later in the code, they don't have to go searching for where it came from.

    Speaking of which, this:
    screenScroll = 0
    is certainly not a constant; you need to find a better way. There really isn't any excuse to do this especially if you are trying to make code that is instructive to others.

    In terms of resource loading, there aren't a ton of files for this program, but it would probably be good to look into loading at least images with loops. I personally like to load my images and place them in a dictionary keyed by their filenames minus their extension. With bigger programs, loading images individually becomes arduous.

    And the last thing I can think of for the moment; the code at the bottom of your program which actually starts everything; should come under an if statement like this:
    if __name__ == "__main__":
    Again this isn't critical to the operation of your program but, (and again especially if the code is intended to be instructive) it is the proper way to do things.

    I look forward to seeing more from your team,
    -Mek

  • wiygn 2013-06-21 15:37

    Ok, guys. First of all I'm sorry for potentional mistakes in my english. So I had tried to launch the game after downloading and saw this errors:

    File "~blabla\LunarPanda.py", line 164
    if self._animFrame <> frameNumber:
    ^
    SyntaxError: invalid syntax

    File "~blabla\LunarPanda.py", line 673
    if mrPanda.angleDelta <> 0:
    ^
    SyntaxError: invalid syntax

    I don't know where author find statements like "<>", but I'm sure, that he ments "!=". So I'd find&replaced <> on != and game started to work properly.

  • Gimpy Software 2013-06-28 12:25

    Hi Guys, Sorry just saw these comments.

    Mekire, thanks for taking the time to feedback. It's all useful stuff and we're always open to code suggestions to include in future releases :-) and obviously happy for you to tweak and change the code in the meanwhile

    wyign, We'll fix this in our next release. Thanks for letting us know.

  • Gimpy Software 2013-06-28 12:27

    Just added a little blog on 'How to play Lunar Panda'

    http://gimpysoftware.com/index...

  • Coypi 2013-08-09 22:55

    Norton:Threat Detected... Setup.exe(Medium Risk!) Uh... Virus???

    rocomarco 2013-08-31 12:27

    don't use norton

  • Curious_Guy 2013-08-13 14:07

    How Did you make pygame go into a fullscreen window? ill look into it myself, but i would like to know

    Gimpy Software 2013-08-27 19:12

    It's this line in the source code:
    screen=pygame.display.set_mode((screen_width_pixels, screen_height_pixels), pygame.FULLSCREEN, 32)