-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpg_demo.py
49 lines (37 loc) · 1.17 KB
/
pg_demo.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import pygame, sys
from pygame.locals import *
# set up pygame
pygame.init()
# set up the window
windowSurface = pygame.display.set_mode((900, 900), 0, 32)
pygame.display.set_caption('Goshko & Nasko rule!')
# set up the colors
BLACK = (0, 0, 0)
WHITE = (255, 255, 255)
RED = (228, 120, 118)
ORANGE = (237, 151, 81)
GREEN = (195, 237, 81)
BLUE = (32, 118, 186)
# draw the white background onto the surface
windowSurface.fill(BLUE)
#pygame.draw.polygon(windowSurface, GREEN, ((146, 0), (291, 106), (236, 277), (56, 277), (0, 106)))
#pygame.draw.line(windowSurface, BLUE, (60, 60), (120, 60), 4)
#pygame.draw.circle(windowSurface, BLUE, (300, 50), 20, 0)
#pygame.draw.ellipse(windowSurface, RED, (300, 250, 40, 80), 1)
# get a pixel array of the surface
pixArray = pygame.PixelArray(windowSurface)
for x in range(100):
for y in range(100):
pixArray[x+200][y+300] = ORANGE
del pixArray
# draw the window onto the screen
# run the game loop
i=1
while True:
pygame.draw.circle(windowSurface, RED, (600, 600), i, 0)
i += 1
pygame.display.update()
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()