File size: 11,052 Bytes
a8cb0a6 |
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 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 |
from enum import Enum
from .amplitude import AsfPosConverter
class space_state(Enum):
unavailable = 1
available_without_connector = 2
default_available = 3
class spaceManager:
def __init__(self):
self.spaces_unavailable = {}
def getSpaceState(self, coordinates):
if coordinates in self.spaces_unavailable:
return self.spaces_unavailable[coordinates]
return space_state.default_available
def changeSpaceState(self, coordinates, state):
if coordinates in self.spaces_unavailable:
if self.spaces_unavailable[coordinates].value > state.value:
self.spaces_unavailable[coordinates] = state
else:
self.spaces_unavailable[coordinates] = state
def getPlacementDetails(self, coordinates, pos, amplitude_dict):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
pos1 = pos
while self.getSpaceState((x, y, z + pos)) == space_state.unavailable:
pos += 1
pos2 = pos
pos = pos1
while self.getSpaceState((x, y, z + pos)) == space_state.unavailable:
pos -= 1
pos0 = pos
if (pos0 != 1) and (
(pos2 == 49)
or (
AsfPosConverter.getAmplitude(amplitude_dict, pos0)
- AsfPosConverter.getAmplitude(amplitude_dict, pos2)
< 2 * AsfPosConverter.getAmplitude(amplitude_dict, pos1)
)
):
pos = pos0
else:
pos = pos2
if (
self.getSpaceState((x, y, z + pos))
== space_state.available_without_connector
):
return pos, False
elif self.getSpaceState((x, y, z + pos)) == space_state.default_available:
return pos, True
def savePlacementDetails(self, coordinates, state):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
if state == "instant_repeater":
self.changeSpaceState((x, y, z), space_state.available_without_connector)
self.changeSpaceState((x, y, z + 1), space_state.unavailable)
self.changeSpaceState((x, y, z + 2), space_state.unavailable)
self.changeSpaceState(
(x, y, z + 3), space_state.available_without_connector
)
else:
if state == "note_block_with_connector":
self.changeSpaceState((x, y, z), space_state.unavailable)
self.changeSpaceState(
(x, y, z - 1), space_state.available_without_connector
)
self.changeSpaceState(
(x, y, z + 1), space_state.available_without_connector
)
elif state == "note_block_without_connector":
self.changeSpaceState((x, y, z), space_state.unavailable)
class commandGenerator:
@staticmethod
def getCleanSpace(coordinates, l, b, h):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
res = f"fill {x} {y} {z} {x + l} {y + b} {z + h} air\n"
return res
@staticmethod
def getInstantRepeater(coordinates):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
res = f"""
#---------INSTANT_REPEATER-----------
setblock {x} {y} {z} redstone_lamp
setblock {x} {y + 1} {z} sticky_piston[facing=south]
setblock {x} {y + 1} {z + 1} redstone_block
setblock {x} {y} {z + 2} sticky_piston[facing=north,extended=true]
setblock {x} {y} {z + 3} redstone_lamp
setblock {x} {y + 1} {z + 3} redstone_wire
#------------------------------------
"""
return res
@staticmethod
def getNoteBlock(coordinates, inc, block, pos, place_connector):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
res = ""
if place_connector:
res += f"""
#--------------NOTE_BLOCK-{pos}-------------------
setblock {x} {y-1} {z + pos} glass
setblock {x} {y} {z + pos} redstone_wire"""
else:
res += f"""
#--------------NOTE_BLOCK-{pos}-------------------"""
res += f"""
setblock {x + inc} {y - 2} {z + pos} glass
setblock {x + inc} {y - 1} {z + pos} {block['block_name']}
setblock {x + inc} {y} {z + pos} note_block[note={block['note']}]
#-----------------------------------------------
"""
return res
@staticmethod
def getMainRepeaterAndRedstoneLine(coordinates, tm, inc):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
dir = "west" if inc == 1 else "east"
res = f"""
#------------------------------------{tm / 1000}-----------------------------------------
setblock {x} {y - 1} {z} glass
setblock {x} {y} {z} repeater[delay=1,facing={dir}]
fill {x + inc} {y - 1} {z} {x + inc} {y - 1} {z + 48} glass
fill {x + inc} {y} {z} {x + inc} {y} {z + 48} redstone_wire
setblock {x + 2*inc} {y - 1} {z} glass
setblock {x + 2*inc} {y} {z} redstone_wire
"""
return res
@staticmethod
def getUpperFloorConnection(coordinates, inc):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
res = f"""
#--------------UPPER-FLOOR-CONNECTION-------------------
setblock {x} {y-1} {z} glass
setblock {x} {y} {z} redstone_wire
setblock {x + inc} {y - 1} {z} glass
setblock {x + inc} {y} {z} redstone_wire
setblock {x + inc} {y} {z - 1} glass
setblock {x + inc} {y + 1} {z - 1} redstone_wire
setblock {x + inc} {y + 1} {z - 2} glass
setblock {x + inc} {y + 2} {z - 2} redstone_wire
setblock {x + 2 * inc} {y + 2} {z - 2} glass
setblock {x + 2 * inc} {y + 3} {z - 2} redstone_wire
setblock {x + 2 * inc} {y + 3} {z - 1} glass
setblock {x + 2 * inc} {y + 4} {z - 1} redstone_wire
setblock {x + 2 * inc} {y + 3} {z} glass
setblock {x + 2 * inc} {y + 4} {z} redstone_wire
#-------------------------------------------------------
"""
return res
@staticmethod
def getMineCartRailsStarter(coordinates):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
res = f"""
#--------------MINECART-RAIL-STARTER-------------------
setblock {x - 1} {y} {z} redstone_wire
setblock {x - 2} {y} {z} redstone_wire
setblock {x - 2} {y} {z - 1} redstone_wire
setblock {x - 2} {y} {z - 2} redstone_wire
setblock {x - 2} {y} {z - 3} redstone_wire
setblock {x - 2} {y} {z - 4} redstone_wire
setblock {x - 1} {y} {z - 4} redstone_wire
setblock {x} {y} {z-4} redstone_wire
setblock {x + 1} {y} {z - 4} redstone_wire
setblock {x + 2} {y} {z - 4} repeater[delay=1,facing=east]
setblock {x + 3} {y} {z - 4} redstone_wire
setblock {x + 4} {y} {z - 4} redstone_wire
setblock {x + 5} {y} {z - 4} redstone_wire
setblock {x + 6} {y} {z - 4} redstone_wire
setblock {x + 7} {y} {z - 4} redstone_wire
setblock {x + 8} {y} {z - 4} redstone_wire
setblock {x + 9} {y} {z - 4} redstone_wire
setblock {x + 10} {y} {z - 4} redstone_wire
setblock {x + 11} {y} {z - 4} redstone_wire
setblock {x + 12} {y} {z - 4} repeater[delay=1,facing=east]
setblock {x + 13} {y} {z - 4} redstone_wire
setblock {x + 14} {y} {z - 4} redstone_wire
setblock {x + 15} {y} {z - 4} redstone_wire
setblock {x + 16} {y} {z - 4} redstone_wire
setblock {x + 17} {y} {z - 4} redstone_wire
setblock {x + 18} {y} {z - 4} redstone_wire
setblock {x + 19} {y} {z - 4} stone_button[face=floor]
setblock {x + 19} {y} {z - 3} redstone_wire
setblock {x + 19} {y} {z - 2} smooth_quartz
setblock {x + 20} {y} {z - 2} powered_rail
summon minecart {x + 20} {y} {z - 2}
setblock {x + 21} {y} {z - 2} rail
setblock {x + 22} {y} {z - 2} powered_rail
#-------------------------------------------------------
"""
return res
@staticmethod
def getMineCartRailsEnder(coordinates, inc):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
if inc == 1:
x = x + 23
z = z - 2
else:
x = x - 26
z = z - 1
res = f"""
#--------------MINECART-RAIL-ENDER-------------------
setblock {x} {y - 1} {z - 1} smooth_quartz
setblock {x} {y} {z - 1} redstone_torch
setblock {x} {y - 1} {z} smooth_quartz
setblock {x} {y} {z} powered_rail
setblock {x + inc} {y - 1} {z} smooth_quartz
setblock {x + inc} {y} {z} rail
setblock {x + 2 * inc} {y - 1} {z} smooth_quartz
setblock {x + 2 * inc} {y} {z} powered_rail
summon minecart {x + 2 * inc} {y} {z}
setblock {x + 3 * inc} {y - 1} {z} smooth_quartz
setblock {x + 3 * inc} {y} {z} smooth_quartz
#-------------------------------------------------------
"""
return res
@staticmethod
def getMineCartRails(coordinates, inc):
x, y, z = coordinates[0], coordinates[1], coordinates[2]
if inc == 1:
x = x + 23
z = z - 2
else:
x = x - 26
z = z - 1
res = f"""
#--------------MINECART-RAIL-SUPPORT-------------------
setblock {x} {y - 1} {z - 1} smooth_quartz
setblock {x} {y} {z - 1} redstone_torch
setblock {x} {y - 1} {z} smooth_quartz
setblock {x} {y} {z} powered_rail
setblock {x + inc} {y} {z} smooth_quartz
setblock {x + inc} {y + 1} {z} powered_rail
setblock {x + 2 * inc} {y + 1} {z} smooth_quartz
setblock {x + 2 * inc} {y + 2} {z} powered_rail
setblock {x + 3 * inc} {y + 2} {z} smooth_quartz
setblock {x + 3 * inc} {y + 3} {z} powered_rail
setblock {x + 4 * inc} {y + 2} {z} smooth_quartz
setblock {x + 4 * inc} {y + 3} {z} powered_rail
setblock {x + 5 * inc} {y + 2} {z} smooth_quartz
setblock {x + 5 * inc} {y + 3} {z} powered_rail
setblock {x + 6 * inc} {y + 2} {z} smooth_quartz"""
if inc == 1:
res += f"""
setblock {x + 6 * inc} {y + 3} {z} rail
setblock {x + 6 * inc} {y + 2} {z + inc} smooth_quartz
setblock {x + 6 * inc} {y + 3} {z + inc} rail"""
else:
res += f"""
setblock {x + 6 * inc} {y + 3} {z} powered_rail
setblock {x + 7 * inc} {y + 2} {z} smooth_quartz
setblock {x + 7 * inc} {y + 3} {z} rail
setblock {x + 7 * inc} {y + 2} {z + inc} smooth_quartz
setblock {x + 7 * inc} {y + 3} {z + inc} rail
setblock {x + 6 * inc} {y + 2} {z + inc} smooth_quartz
setblock {x + 6 * inc} {y + 3} {z + inc} powered_rail"""
res += f"""
setblock {x + 5 * inc} {y + 2} {z + inc} smooth_quartz
setblock {x + 5 * inc} {y + 3} {z + inc} powered_rail
setblock {x + 4 * inc} {y + 3} {z + inc} smooth_quartz
setblock {x + 4 * inc} {y + 4} {z + inc} powered_rail
setblock {x + 3 * inc} {y + 3} {z + inc} smooth_quartz
setblock {x + 3 * inc} {y + 4} {z + inc} powered_rail
setblock {x + 2 * inc} {y + 3} {z + inc} smooth_quartz
setblock {x + 2 * inc} {y + 4} {z + inc} powered_rail
setblock {x + 1 * inc} {y + 3} {z + inc} smooth_quartz
setblock {x + 1 * inc} {y + 4} {z + inc} powered_rail
#-------------------------------------------------------
"""
return res
if __name__ == "__main__":
print(
"This is a library for Audio Manipulation via fourier transform made specificaly for minecraft audio production using note blocks"
)
print("Author -: Rajat Bansal, IIT Mandi, B20123")
print("Sample Command -:")
print(commandGenerator.getCleanSpace((0, 0, 0), 1, 1, 1))
|