diff options
author | Florian Jung <flo@windfisch.org> | 2015-08-25 19:49:46 +0200 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2015-08-25 19:49:46 +0200 |
commit | 0df1c5f7799fdd63c3cd3fdc92bc9ccc60d1da8f (patch) | |
tree | 6d5eb1af94357640bc12c94d2694d912fa01d281 | |
parent | 8386ae0e63313ffc5d0fefebda8451d982679e01 (diff) |
clean quit
-rw-r--r-- | gui.py | 6 | ||||
-rw-r--r-- | main.py | 4 |
2 files changed, 7 insertions, 3 deletions
@@ -8,6 +8,8 @@ import math import time from agarnet.agarnet.vec import Vec +running = True + font_fallback = False try: from pygame import freetype @@ -272,7 +274,7 @@ def draw_markers(): draw_marker(marker[i], colors[i], marker_updated[i]) def draw_frame(): - global screen, movement, zoom, screensize, input, bot_input, marker, marker_updated + global screen, movement, zoom, screensize, input, bot_input, marker, marker_updated, running pygame.event.pump() clock.tick() @@ -328,7 +330,7 @@ def draw_frame(): input = False bot_input = True if event.key == K_ESCAPE: - pygame.quit() + running = False if event.key == K_r: c.send_respawn() if event.type == MOUSEBUTTONDOWN: @@ -58,7 +58,7 @@ strategy = Strategy(c) autorespawn_counter = 60 # main loop -while True: +while gui.running: c.on_message() gui.draw_frame() @@ -79,3 +79,5 @@ while True: autorespawn_counter = 60 else: autorespawn_counter-=1 + +print("bye") |