mmb.content.wireworld.actuator.ActuatorRotations Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of multimachinebuilder Show documentation
Show all versions of multimachinebuilder Show documentation
Dependency for the MultiMachineBuilder, a voxel game about building an industrial empire in a finite world.
THIS RELEASE IS NOT PLAYABLE. To play the game, donwload from >ITCH.IO LINK HERE< or >GH releases link here<
The newest version!
/**
*
*/
package mmb.content.wireworld.actuator;
import java.awt.Point;
import mmb.Nil;
import mmb.cgui.BlockActivateListener;
import mmb.content.ContentsBlocks;
import mmb.content.wireworld.AbstractChiralActuatorBase;
import mmb.engine.block.BlockEntry;
import mmb.engine.block.BlockType;
import mmb.engine.rotate.ChirotatedImageGroup;
import mmb.engine.texture.Textures;
import mmb.engine.worlds.MapProxy;
import mmb.engine.worlds.world.World;
import mmb.menu.world.window.WorldWindow;
/**
* @author oskar
*
*/
public class ActuatorRotations extends AbstractChiralActuatorBase implements BlockActivateListener {
//Block methods
@Override
public BlockType type() {
return ContentsBlocks.ROTATOR;
}
@Override
public BlockEntry blockCopy() {
ActuatorRotations result = new ActuatorRotations();
result.setChirotation(getChirotation());
return result;
}
private static final ChirotatedImageGroup TEXTURE = ChirotatedImageGroup.create(Textures.get("machine/CW.png"));
@Override
public ChirotatedImageGroup getImage() {
return TEXTURE;
}
@Override
public void click(int blockX, int blockY, World map, @Nil WorldWindow window, double partX, double partY) {
flip();
}
//Actuator methods
@Override
protected void run(Point p, BlockEntry ent, MapProxy proxy) {
ent.wrenchRight(getChirality());
}
}