-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutils.py
224 lines (175 loc) · 6.64 KB
/
utils.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
from random import randint
from constants import *
import sys
############# Math #############
#Gets the average of 4 points on the grid. Ignores points that don't exist & zero points
def average(a,b,c,d,main):
total = 0
count = 0
if a is not None:
x = main[a[0]][a[1]] #get value of that coordinate
if x != 0:
total = total + x
count = count + 1
if b is not None:
x = main[b[0]][b[1]]
if x != 0:
total = total + x
count = count + 1
if c is not None:
x = main[c[0]][c[1]]
if x != 0:
total = total + x
count = count + 1
if d is not None:
x = main[d[0]][d[1]]
if x != 0:
total = total + x
count = count + 1
return total/count
def MaxMinValues(d):
#Returns max and min values from a dictionary
v=list(d.values())
return (max(v),min(v))
############# Algorithm #############
def offset(gridsize):
global roughness
if landscape_type == 0:
val = randint(0,roughness * gridsize)
else:
val = randint(-roughness * gridsize,roughness * gridsize)
return val
# midpoint = average of corners + random_step
def square(grid):
#
# a b
# O
# c d
#
last = len(grid)-1 #last grid index
half = last / 2 #midpoint
#Assign mean + random
mean = (grid[0][0] + grid[last][0] + grid[0][last] + grid[last][last]) / 4
grid[half][half] = mean + offset(len(grid))
return
# edges = average of surrounding edges + random_step
def diamond(main,gx,gy,grid):
#
# a
# b O c
# e O d O f
# g O h
# i
last = len(grid)-1 #last grid index
half = last / 2 #midpoint
#surrounding corners
b = (gx,gy)
c = (gx + last, gy)
g = (gx, gy + last)
h = (gx + last, gy + last)
#midpoint
d = (gx+half,gy+half)
#extreme corners
a = (gx + half, gy - half) if gy - half >= 0 else None
e = (gx - half, gy + half) if gx - half >= 0 else None
f = (gx + last + half, gy + half) if gx + last + half < len(main) else None
i = (gx + half, gy + last + half) if gy + last + half < len(main) else None
#print a,b,c,d,e,f,g,h,i
#averages
top = average(a,b,c,d,main)
left = average(b,e,d,g,main)
right = average(c,d,f,h,main)
bottom = average(d,g,h,i,main)
#assign values
grid[half][0] = top + offset(len(grid))
grid[0][half] = left + offset(len(grid))
grid[last][half] = right + offset(len(grid))
grid[half][last] = bottom + offset(len(grid))
def subgrid(grid):
last = len(grid)-1 #last grid index
half = last / 2 #midpoint
upper_left_grid =grid[:half+1] #Halved on one dimension
lower_left_grid = grid[:half+1]
for idx,row in enumerate(upper_left_grid):
upper_left_grid[idx] = row[:half+1] #Halved on the second dimension
lower_left_grid[idx] = row[half:] #Halved on the second dimension
upper_right_grid =grid[half:] #Halved on one dimension
lower_right_grid = grid[half:]
for idx,row in enumerate(upper_right_grid):
upper_right_grid[idx] = row[:half+1] #Halved on the second dimension
lower_right_grid[idx] = row[half:] #Halved on the second dimension
return (upper_left_grid,upper_right_grid,lower_left_grid,lower_right_grid)
# Insert sub into grid at position x,y
def insert(sub,grid,x,y):
for r_idx,row in enumerate(sub):
for c_idx,item in enumerate(row):
grid[x+r_idx][y+c_idx] = item
############# Display #################
def display(choice,grid):
#CSV Output
if choice == 0:
print '"x"',",",'"y"',",",'"value"' #column headers
for col,column in enumerate(grid):
for row,item in enumerate(column):
print col, ",",row,",",item
#2D Representation
elif choice == 1:
import pygame
from pygame.locals import QUIT,KEYDOWN,K_ESCAPE # * not recommended within functions
pygame.init()
SCREENX = 800
SCREENY = 800
x_bit = SCREENX / len(grid)
y_bit = SCREENY / len(grid[0])
# Heatmap
#setup dictionary (value:colorrange value)
items = {}
for col,column in enumerate(grid):
for row,item in enumerate(column):
items[item] = item #non zero value
# Find max numbers & convert to a 0-1 scale
ma,mi = MaxMinValues(items)
span = ma - mi
for x in items:
#associated new value
items[x] = (((items[x] - mi) * 1020) / span) #765 is the range of colours we want to represent.
#pygame setup
screen = pygame.display.set_mode((SCREENX, SCREENY)) #display
pygame.display.set_caption('Overhead View') #window
while True: # main display loop
for col,column in enumerate(grid):
for row,item in enumerate(column):
val = items[item] #Get heat value
if val <= 255:
pygame.draw.rect(screen, (0,val,255), (x_bit*row,y_bit*col, x_bit, y_bit)) #blue -> cyan
elif val <= 510:
pygame.draw.rect(screen, (0,255,val-255), (x_bit*row,y_bit*col, x_bit, y_bit)) #cyan -> green
elif val <= 765:
pygame.draw.rect(screen, (val-510,255,0), (x_bit*row,y_bit*col, x_bit, y_bit)) #green -> yellow
elif val <= 1020:
pygame.draw.rect(screen, (255,val-765,0), (x_bit*row,y_bit*col, x_bit, y_bit)) #yellow -> red
for event in pygame.event.get():
if event.type == QUIT:
pygame.quit()
sys.exit()
elif event.type == KEYDOWN:
if event.key == K_ESCAPE:
pygame.quit()
sys.exit()
pygame.display.update()
#3D Representation
elif choice == 2:
import numpy
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
from matplotlib import cm
# Set up grid and test data
nx, ny = 256, 1024
x = range(len(grid))
y = range(len(grid))
data = numpy.array(grid)
hf = plt.figure()
ha = hf.add_subplot(111, projection='3d')
X, Y = numpy.meshgrid(x, y) # `plot_surface` expects `x` and `y` data to be 2D
ha.plot_surface(X, Y, data,shade=True,cmap=cm.terrain,rstride=1, cstride=1,)
plt.show()