-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneratorScript.py
106 lines (81 loc) · 2.54 KB
/
GeneratorScript.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
import c4d
import math as m
def currentfunc(x,y,tx,ty,func):
out = 0
code = """
from math import *
from random import *
x = {k}
y = {l}
output = {parsingstring}
""".format(k=x+tx,l=y+ty,parsingstring = func)
exec(code,globals())
return output
def TextureScaler(op,a):
thetag = op.GetTag(c4d.Ttexture)
thetag[c4d.TEXTURETAG_PROJECTION] = 2
thetag[c4d.TEXTURETAG_SEAMLESS] = True
thetag[c4d.TEXTURETAG_SIZE,c4d.VECTOR_Y] = a
thetag[c4d.TEXTURETAG_POSITION,c4d.VECTOR_Y] = a
def main():
thisobj = doc.SearchObject("mafgrapher")
try:
textag = thisobj.GetTag(c4d.TextureTag)
except:
pass
#stuff to read from Userdata
l = thisobj[c4d.ID_USERDATA,2]
h = thisobj[c4d.ID_USERDATA,3]
A = thisobj[c4d.ID_USERDATA,5]
func = thisobj[c4d.ID_USERDATA,8]
maxval = A
#frame nu
frameno = 0
scalefactor = thisobj[c4d.ID_USERDATA,6]
phase = 0
panx = thisobj[c4d.ID_USERDATA,13]
pany = thisobj[c4d.ID_USERDATA,14]
lSegments = int(thisobj[c4d.ID_USERDATA,10])
hSegments = int(thisobj[c4d.ID_USERDATA,11])
#point spacing
lSpace = l /(lSegments - 1)
hSpace = h /(hSegments - 1)
#midpoint
lhalfSegment = lSegments * 0.5
points = []
for z in xrange(hSegments):
for x in xrange (lSegments):
p = c4d.Vector(0.0)
p.x = lSpace * ( x)
p.z = hSpace * z
try:
p.y = A*currentfunc(p.x*scalefactor,p.z*scalefactor,panx,pany,func) #point position setting shit happens here
if(p.y > maxval):
maxval = p.y
else:
pass
except:
p.y = 1/A
points.append(p)
pol = c4d.BaseObject(c4d.Opolygon)
ptCnt = lSegments * hSegments
polyCnt = (lSegments - 1 )* (hSegments - 1)
#tag material stretching
try:
TextureScaler(thisobj,maxval/1.9)
except:
pass
pol.ResizeObject(ptCnt, polyCnt)
pol.SetAllPoints(points)
polyIndex = 0
for x in xrange(lSegments - 1):
for y in xrange (hSegments - 1):
xmove = x + y * lSegments
ymove = x + y * lSegments + lSegments
cpol = c4d.CPolygon( xmove ,ymove ,ymove + 1 ,xmove + 1 )
pol.SetPolygon(polyIndex , cpol)
polyIndex += 1
# Updates the polygon object
pol.Message(c4d.MSG_UPDATE)
# Done
return pol