-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathEggPrimitiveCreation.py
executable file
·180 lines (134 loc) · 6.17 KB
/
EggPrimitiveCreation.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
from panda3d.core import Point3D, deg2Rad, NodePath, Filename, CSZupRight
from panda3d.core import CollisionNode,CollisionPolygon, GeomVertexFormat, Point3
from panda3d.egg import EggPolygon, EggGroup, EggVertexPool, EggData, EggVertex, loadEggData, EggCoordinateSystem
import math
def makeCollisionModel(inputModel = "models/arena_1.bam", modelOffset = 0):
# we can utilize a collision mesh generated directly for the built-in collision system
# to obtain a varying heightfield, adapted from:
# https://discourse.panda3d.org/t/collision-mesh-from-loaded-model-for-built-in-collision-system/27102
# load model
path_to_model = inputModel
model_root = base.loader.loadModel(path_to_model)
model_root.reparentTo(base.render)
# create a temporary copy to generate the collision meshes from
model_copy = model_root.copyTo(base.render)
model_copy.detachNode()
# "bake" the transformations into the vertices
model_copy.flattenLight()
# create root node to attach collision nodes to
collision_root = NodePath("collision_root")
collision_root.reparentTo(model_root)
# offset the collision meshes from the model so they're easier to see
collision_root.setX(modelOffset)
collision_root.setY(modelOffset)
# create a collision mesh for each of the loaded models
for model in model_copy.findAllMatches("**/+GeomNode"):
model_node = model.node()
collision_node = CollisionNode(model_node.name)
collision_mesh = collision_root.attachNewNode(collision_node)
# collision nodes are hidden by default
collision_mesh.show()
for geom in model_node.modifyGeoms():
geom.decomposeInPlace()
vertex_data = geom.modifyVertexData()
vertex_data.format = GeomVertexFormat.get_v3()
view = memoryview(vertex_data.arrays[0]).cast("B").cast("f")
index_list = geom.primitives[0].getVertexList()
index_count = len(index_list)
for indices in (index_list[i:i+3] for i in range(0, index_count, 3)):
points = [Point3(*view[index*3:index*3+3]) for index in indices]
coll_poly = CollisionPolygon(*points)
collision_node.addSolid(coll_poly)
# model_root.hide()
def makeSquares(gridX = 30, gridY = 30, scale = 1, evpName = 'square', startPos = Point3D(0, 0, 0)):
z_up = EggCoordinateSystem()
z_up.setValue(CSZupRight)
dataGroup = EggGroup()
data = EggData()
dataGroup.addChild(data)
data.addChild(z_up)
vp = EggVertexPool(evpName)
data.addChild(vp)
poly = EggPolygon()
data.addChild(poly)
# define a line of squares
square_list = [[0,0,0],[1,0,0],[1,1,0],[0,1,0]]
for x in range(gridX):
square_list = [[0+x,0,0],[1+x,0,0],[1+x,1,0],[0+x,1,0]]
for vert in square_list:
v = EggVertex()
v.setPos(Point3D(vert[0], vert[1], vert[2]))
poly.addVertex(vp.addVertex(v))
return data
def makeSquaresEVP(gridX = 30, gridY = 30, scale = 1, evpName = 'square', hardZ = 0):
z_up = EggCoordinateSystem()
z_up.setValue(CSZupRight)
data = EggData()
data.addChild(z_up)
# define a grid of scaled squares
square_list = [[0,0,0],[scale,0,0],[scale,scale,0],[0,scale,0]]
for y in range(gridY):
for x in range(gridX):
vp = EggVertexPool(evpName)
data.addChild(vp)
poly = EggPolygon()
data.addChild(poly)
square_list = [[x*scale,y*scale,hardZ],[scale+x*scale,y*scale,hardZ],
[scale+x*scale,scale+y*scale,hardZ],[x*scale,scale+y*scale,hardZ]]
for vert in square_list:
v = EggVertex()
v.setPos(Point3D(vert[0], vert[1], vert[2]))
poly.addVertex(vp.addVertex(v))
return data
def makeSquaresEVPXZ(gridX = 30, gridY = 30, scale = 1, evpName = 'square', hardZ = 0):
z_up = EggCoordinateSystem()
z_up.setValue(CSZupRight)
data = EggData()
data.addChild(z_up)
# define a grid of scaled squares
square_list = [[0,0,0],[scale,0,0],[scale,scale,0],[0,scale,0]]
for y in range(gridY):
for x in range(gridX):
vp = EggVertexPool(evpName)
data.addChild(vp)
poly = EggPolygon()
data.addChild(poly)
square_list = [[x*scale,hardZ,y*scale],[scale+x*scale,hardZ,y*scale],
[scale+x*scale,hardZ,scale+y*scale],[x*scale,hardZ,scale+y*scale]]
for vert in square_list:
v = EggVertex()
v.setPos(Point3D(vert[0], vert[1], vert[2]))
poly.addVertex(vp.addVertex(v))
return data
def makeSquaresEVPXZSparse(gridX = 30, gridY = 30, scale = 1, evpName = 'square', hardZ = 0):
z_up = EggCoordinateSystem()
z_up.setValue(CSZupRight)
data = EggData()
data.addChild(z_up)
# define a grid of scaled squares
square_list = [[0,0,0],[scale,0,0],[scale,scale,0],[0,scale,0]]
x = scale
for y in range(gridY):
vp = EggVertexPool(evpName)
data.addChild(vp)
poly = EggPolygon()
data.addChild(poly)
square_list = [[x*scale,hardZ,y*scale],[scale+x*scale,hardZ,y*scale],
[scale+x*scale,hardZ,scale+y*scale],[x*scale,hardZ,scale+y*scale]]
for vert in square_list:
v = EggVertex()
v.setPos(Point3D(vert[0], vert[1], vert[2]))
poly.addVertex(vp.addVertex(v))
y = scale
for x in range(gridX):
vp = EggVertexPool(evpName)
data.addChild(vp)
poly = EggPolygon()
data.addChild(poly)
square_list = [[x*scale,hardZ,y*scale],[scale+x*scale,hardZ,y*scale],
[scale+x*scale,hardZ,scale+y*scale],[x*scale,hardZ,scale+y*scale]]
for vert in square_list:
v = EggVertex()
v.setPos(Point3D(vert[0], vert[1], vert[2]))
poly.addVertex(vp.addVertex(v))
return data