summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Scheibe <rob.scheibe@gmail.com>2020-07-03 15:33:31 +0200
committerRobert Scheibe <rob.scheibe@gmail.com>2020-07-03 15:33:31 +0200
commitae7e1fc4d7bc4d5ec4ad09aaf28f8f16982c85a5 (patch)
tree7103a1607aafd80582b28d1d07fc147922a946bf
parent150ef16e8d5eee4e121f10e70c0980e04646b965 (diff)
added more info
-rwxr-xr-x[-rw-r--r--]AsteroidsInfinity/AsteroidsInfinity.py7
-rw-r--r--README.txt15
2 files changed, 19 insertions, 3 deletions
diff --git a/AsteroidsInfinity/AsteroidsInfinity.py b/AsteroidsInfinity/AsteroidsInfinity.py
index a702e26..085f3ab 100644..100755
--- a/AsteroidsInfinity/AsteroidsInfinity.py
+++ b/AsteroidsInfinity/AsteroidsInfinity.py
@@ -1,4 +1,4 @@
-#! /usr/bin/env python
+#! /usr/bin/env python2
# The above line makes this executible in unix systems
# Asteroids Infinity
@@ -616,9 +616,10 @@ def main():
small_font = pygame.font.Font("font/Vectorb.ttf", 10)
large_font = pygame.font.Font("font/Vectorb.ttf", 40)
loadsounds()
- screen = pygame.display.set_mode(screensize)
+ screen = pygame.display.set_mode(screensize,FULLSCREEN|DOUBLEBUF|HWSURFACE)
screen.fill(backcolor)
pygame.display.flip()
+ pygame.mouse.set_visible(False)
fullscreen = 0
pygame.display.set_caption("Asteroids Infinity")
volume = 100
@@ -1048,9 +1049,9 @@ def main():
beattype = 1
viewpoint[0] += viewpointspeed[0] / fps
viewpoint[1] += viewpointspeed[1] / fps
+ screen.fill((backcolor))
Objects.update()
ProtoObjs.update()
- screen.fill((backcolor))
#Objects.draw(screen)
dirtyrects = []
for sprite in ProtoObjs.sprites():
diff --git a/README.txt b/README.txt
index 951a49c..741fe62 100644
--- a/README.txt
+++ b/README.txt
@@ -26,3 +26,18 @@ Path=/home/pi/src/joystick
Terminal=false
Categories=Application;
"""
+
+add game to lxd menu, add game.desktop file in directory ~/.local/share/applications
+"""
+[Desktop Entry]
+Type=Application
+Name=Asteroids
+Comment=Asteroids pygame
+Icon=/usr/share/pixmaps/minecraft-pi.png
+StartupNotify=true
+NoDisplay=false
+Exec=/home/pi/src/AsteroidsInfinity/AsteroidsInfinity.py
+Path=/home/pi/src/AsteroidsInfinity
+Terminal=false
+Categories=Application;Game;
+"""