-
Notifications
You must be signed in to change notification settings - Fork 188
/
pgzrun.py
30 lines (22 loc) · 817 Bytes
/
pgzrun.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
"""Runner system for Pygame Zero.
By importing this module, the __main__ module is populated with the builtins
provided by Pygame Zero.
When pgzrun.go() is called, the __main__ module is run as a Pygame Zero
script (we enter the game loop, calling draw() and update() etc as defined in
__main__).
"""
import sys
from pgzero.runner import prepare_mod, run_mod
mod = sys.modules['__main__']
if not getattr(sys, '_pgzrun', None):
if not getattr(mod, '__file__', None):
raise ImportError(
"You are running from an interactive interpreter.\n"
"'import pgzrun' only works when you are running a Python file."
)
prepare_mod(mod)
def go():
"""Run the __main__ module as a Pygame Zero script."""
if getattr(sys, '_pgzrun', None):
return
run_mod(mod)