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
|
#
# Code under the MIT license by Alexander Pruss
#
#
# mandelbulb.py [size [power [half]]]
#
# Options for half: south, north, east, west, up, down
from mc import *
import mcpi.settings as settings
import cmath
import time
import sys
from random import uniform
# setting this to 0 makes for more isolated blocks because the connecting filigree was
# missed; increasing slows down rendering
AVOID_ISOLATES = 12 if not settings.isPE else 0
ESCAPE = 250
if len(sys.argv) < 2:
size = 100
else:
size = int(sys.argv[1])
if len(sys.argv) < 3:
power = 8
else:
power = int(sys.argv[2])
if power == 8:
fractalSize = 2.16
else:
fractalSize = 4.
if len(sys.argv) < 4:
half = None
else:
half = sys.argv[3].lower()[0]
palette = list(reversed([WOOL_WHITE,HARDENED_CLAY_STAINED_WHITE,WOOL_PINK,WOOL_LIGHT_GRAY,WOOL_LIGHT_BLUE,WOOL_MAGENTA,WOOL_PURPLE,HARDENED_CLAY_STAINED_LIGHT_BLUE,HARDENED_CLAY_STAINED_LIGHT_GRAY,HARDENED_CLAY_STAINED_MAGENTA,HARDENED_CLAY_STAINED_PINK,HARDENED_CLAY_STAINED_RED,WOOL_RED,REDSTONE_BLOCK,HARDENED_CLAY_STAINED_ORANGE,WOOL_ORANGE,HARDENED_CLAY_STAINED_YELLOW,WOOL_YELLOW,WOOL_LIME,HARDENED_CLAY_STAINED_LIME,HARDENED_CLAY_STAINED_PURPLE,HARDENED_CLAY_STAINED_CYAN,WOOL_CYAN,WOOL_BLUE,HARDENED_CLAY_STAINED_BLUE,WOOL_GRAY,HARDENED_CLAY_STAINED_GREEN,WOOL_GREEN,HARDENED_CLAY_STAINED_BROWN,WOOL_BROWN,HARDENED_CLAY_STAINED_GRAY,WOOL_BLACK]));
def positions(pos,scale):
yield pos
for i in range(AVOID_ISOLATES):
yield (uniform(pos[0]-0.5*scale,pos[0]+0.5*scale),
uniform(pos[1]-0.5*scale,pos[1]+0.5*scale),
uniform(pos[2]-0.5*scale,pos[2]+0.5*scale))
def calculate0(pos):
x,z,y = pos[0],pos[1],pos[2]
cx,cy,cz = x,y,z
i = 0
try:
wentOut = 0
while i<ESCAPE:
r = sqrt(x*x+y*y+z*z)
if r > 2:
return -1
if r > wentOut:
wentOut = r
theta = acos(z/r)
phi = atan2(y,x)
zr = r**power
theta *= power
phi *= power
x = cx+zr*sin(theta)*cos(phi)
y = cy+zr*sin(phi)*sin(theta)
z = cz+zr*cos(theta)
i = i + 1
return wentOut
except:
return 0
def calculate(pos0,scale):
for pos in positions(pos0,scale):
r = calculate0(pos)
if r >= 0:
return r
return r
#
# we could of course just do for x in range(0,size): for y in range(0,size): yield(x,y)
# but it will make users happier if we start at the player
#
def pollZoom():
global lastHitEvent,lastHitPos
events = mc.events.pollBlockHits()
if len(events) == 0:
return lastHitEvent != None
lastHitEvent = events[-1]
lastHitPos = mc.player.getPos()
return True
def toBulb(centerMC,centerBulb,scale,x,y,z):
return ((x - centerMC.x) * scale + centerBulb[0],
(y - centerMC.y) * scale + centerBulb[1],
(z - centerMC.z) * scale + centerBulb[2])
def draw():
count = 0
rangeX = range(cornerMC.x, cornerMC.x+size)
rangeY = range(cornerMC.y, cornerMC.y+size)
rangeZ = range(cornerMC.z, cornerMC.z+size)
if not half is None:
if half == 'w':
rangeX = range(cornerMC.x, cornerMC.x+size/2)
elif half == 'e':
rangeX = range(cornerMC.x+size/2, cornerMC.x+size)
elif half == 'n':
rangeZ = range(cornerMC.z, cornerMC.z+size/2)
elif half == 's':
rangeZ = range(cornerMC.z+size/2, cornerMC.z+size)
elif half == 'u':
rangeY = range(cornerMC.y+size/2, cornerMC.y+size)
elif half == 'd':
rangeY = range(cornerMC.y, cornerMC.y+size/2)
for mcX in rangeX:
for mcY in rangeY:
for mcZ in rangeZ:
radius = calculate(toBulb(centerMC,centerBulb,scale,mcX,mcY,mcZ),scale)
if radius < 0:
mc.setBlock(mcX,mcY,mcZ,AIR)
else:
i = int(len(palette) / (fractalSize/2) * radius)
if i >= len(palette):
i = len(palette) - 1
mc.setBlock(mcX,mcY,mcZ,palette[i])
if pollZoom():
return
mc.postToChat("Rendered")
if __name__=='__main__':
mc = Minecraft()
startPos = mc.player.getTilePos()
cornerMC = startPos + Vec3(1,0,1)
centerMC = cornerMC + Vec3(size/2,size/2,size/2)
centerBulb = (0,0,0)
initial = True
scale = fractalSize / size
lastHitEvent = None
while True:
mc.player.setPos(startPos)
mc.postToChat("Scale: "+str(fractalSize/size/scale))
draw()
if not initial:
mc.player.setPos(centerMC)
while not pollZoom():
time.sleep(0.25)
if ( lastHitEvent.pos.x < cornerMC.x or
lastHitEvent.pos.x >= cornerMC.x + size or
lastHitEvent.pos.y < cornerMC.y or
lastHitEvent.pos.y >= cornerMC.y + size or
lastHitEvent.pos.z < cornerMC.z or
lastHitEvent.pos.z >= cornerMC.z + size ):
mc.postToChat("resetting")
centerBulb = (0,0,0)
scale = fractalSize / size
initial = True
else:
mc.postToChat("zooming")
centerBulb = toBulb(centerMC,centerBulb,scale,lastHitPos.x,lastHitPos.y,lastHitPos.z)
scale /= 8
initial = False
lastHitEvent = None
|