Package buildcraft.core.blueprints

Source Code of buildcraft.core.blueprints.BptContext

/**
* Copyright (c) 2011-2014, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
*
* BuildCraft is distributed under the terms of the Minecraft Mod Public
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
package buildcraft.core.blueprints;

import net.minecraft.world.World;
import buildcraft.api.blueprints.IBuilderContext;
import buildcraft.api.blueprints.MappingRegistry;
import buildcraft.api.core.IBox;
import buildcraft.api.core.Position;
import buildcraft.core.Box;

public class BptContext implements IBuilderContext {

  public BlueprintReadConfiguration readConfiguration;
  public Box box;
  public World world;
  private MappingRegistry mappingRegistry;

  BptContext (World world, Box box, MappingRegistry registry) {
    this.world = world;
    this.box = box;
    this.mappingRegistry = registry;
  }

  @Override
  public Position rotatePositionLeft(Position pos) {
    return new Position((box.sizeZ() - 1) - pos.z, pos.y, pos.x);
  }

  @Override
  public IBox surroundingBox() {
    return box;
  }

  @Override
  public World world() {
    return world;
  }

  public void rotateLeft() {
    box = box.rotateLeft();
  }

  @Override
  public MappingRegistry getMappingRegistry() {
    return mappingRegistry;
  }
}
TOP

Related Classes of buildcraft.core.blueprints.BptContext

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.