Skip to content

Commit

Permalink
Merge pull request #341 from sk89q/feature/fmp-compat
Browse files Browse the repository at this point in the history
Add FMP compatiblity.
  • Loading branch information
octylFractal committed Feb 13, 2016
2 parents d6db9a9 + 4088f26 commit c6b4772
Show file tree
Hide file tree
Showing 8 changed files with 167 additions and 7 deletions.
1 change: 1 addition & 0 deletions config/checkstyle/import-control.xml
Expand Up @@ -48,6 +48,7 @@
</subpackage>

<subpackage name="forge">
<allow pkg="codechicken.multipart"/>
<allow pkg="cpw"/>
<allow pkg="net.minecraft"/>
<allow pkg="net.minecraftforge"/>
Expand Down
10 changes: 9 additions & 1 deletion worldedit-forge/build.gradle
Expand Up @@ -13,9 +13,17 @@ buildscript {

apply plugin: 'forge'

repositories {
maven {
name 'forge'
url 'http://files.minecraftforge.net/maven/'
}
}

dependencies {
compile project(':worldedit-core')
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.9.0-rc1'
compile group: 'codechicken', name: 'ForgeMultipart', version: '1.7.10-1.2.0.345', classifier: 'dev'
testCompile group: 'org.mockito', name: 'mockito-core', version: '1.9.0-rc1'
}

minecraft {
Expand Down
Expand Up @@ -26,8 +26,12 @@
import com.sk89q.worldedit.blocks.BaseItemStack;
import com.sk89q.worldedit.event.platform.PlatformReadyEvent;
import com.sk89q.worldedit.extension.platform.Platform;
import com.sk89q.worldedit.forge.compat.ForgeMultipartCompat;
import com.sk89q.worldedit.forge.compat.ForgeMultipartExistsCompat;
import com.sk89q.worldedit.forge.compat.NoForgeMultipartCompat;
import com.sk89q.worldedit.internal.LocalWorldAdapter;
import cpw.mods.fml.common.FMLCommonHandler;
import cpw.mods.fml.common.Loader;
import cpw.mods.fml.common.Mod;
import cpw.mods.fml.common.Mod.EventHandler;
import cpw.mods.fml.common.Mod.Instance;
Expand Down Expand Up @@ -76,6 +80,7 @@ public class ForgeWorldEdit {
private ForgePlatform platform;
private ForgeConfiguration config;
private File workingDir;
private ForgeMultipartCompat compat = new NoForgeMultipartCompat();

@EventHandler
public void preInit(FMLPreInitializationEvent event) {
Expand All @@ -87,6 +92,10 @@ public void preInit(FMLPreInitializationEvent event) {
config = new ForgeConfiguration(this);
config.load();

if (Loader.isModLoaded("ForgeMultipart")) {
compat = new ForgeMultipartExistsCompat();
}

FMLCommonHandler.instance().bus().register(ThreadSafeCache.getInstance());
}

Expand Down Expand Up @@ -260,6 +269,10 @@ public File getWorkingDir() {
return this.workingDir;
}

public ForgeMultipartCompat getFMPCompat() {
return compat;
}

/**
* Get the version of the WorldEdit-for-Forge implementation.
*
Expand Down
Expand Up @@ -81,9 +81,10 @@ static void setTileEntity(World world, Vector position, Class<? extends TileEnti
tileEntity.readFromNBT(tag);
}

world.setTileEntity(position.getBlockX(), position.getBlockY(), position.getBlockZ(), tileEntity);
}
tileEntity = ForgeWorldEdit.inst.getFMPCompat().overrideTileEntity(world, tag, tileEntity);

setTileEntity(world, position, tileEntity);
}
/**
* Set a tile entity at the given location using the tile entity ID from
* the tag.
Expand All @@ -95,12 +96,26 @@ static void setTileEntity(World world, Vector position, Class<? extends TileEnti
static void setTileEntity(World world, Vector position, @Nullable NBTTagCompound tag) {
if (tag != null) {
updateForSet(tag, position);
TileEntity tileEntity = TileEntity.createAndLoadEntity(tag);
TileEntity tileEntity = makeTileEntity(world, position, tag);
if (tileEntity != null) {
world.setTileEntity(position.getBlockX(), position.getBlockY(), position.getBlockZ(), tileEntity);
setTileEntity(world, position, tileEntity);
}
}
}

private static TileEntity makeTileEntity(World world, Vector position,
NBTTagCompound tag) {
TileEntity normal = TileEntity.createAndLoadEntity(tag);
return ForgeWorldEdit.inst.getFMPCompat().overrideTileEntity(world, tag,
normal);
}

private static void setTileEntity(World world, Vector position,
TileEntity tileEntity) {
world.setTileEntity(position.getBlockX(), position.getBlockY(),
position.getBlockZ(), tileEntity);
ForgeWorldEdit.inst.getFMPCompat().sendDescPacket(world, tileEntity);
}

/**
* Construct a tile entity from the given class.
Expand Down Expand Up @@ -139,5 +154,4 @@ static TileEntity constructTileEntity(World world, Vector position, Class<? exte
return genericTE;
}


}
@@ -0,0 +1,34 @@
/*
* WorldEdit, a Minecraft world manipulation toolkit
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) WorldEdit team and contributors
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.sk89q.worldedit.forge.compat;

import javax.annotation.Nullable;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public interface ForgeMultipartCompat {

TileEntity overrideTileEntity(World world, @Nullable NBTTagCompound tag,
TileEntity normal);

void sendDescPacket(World world, TileEntity entity);

}
@@ -0,0 +1,51 @@
/*
* WorldEdit, a Minecraft world manipulation toolkit
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) WorldEdit team and contributors
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.worldedit.forge.compat;

import codechicken.multipart.MultipartHelper;
import codechicken.multipart.TileMultipart;
import javax.annotation.Nullable;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class ForgeMultipartExistsCompat implements ForgeMultipartCompat {

@Override
public TileEntity overrideTileEntity(World world,
@Nullable NBTTagCompound tag, TileEntity normal) {
if (tag == null) {
return normal;
}
TileEntity tile = MultipartHelper.createTileFromNBT(world, tag);
if (tile == null) {
return normal;
}
return tile;
}

@Override
public void sendDescPacket(World world, TileEntity entity) {
if (entity instanceof TileMultipart) {
TileMultipart multi = (TileMultipart) entity;
MultipartHelper.sendDescPacket(world, multi);
}
}

}
@@ -0,0 +1,38 @@
/*
* WorldEdit, a Minecraft world manipulation toolkit
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) WorldEdit team and contributors
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package com.sk89q.worldedit.forge.compat;

import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;

public class NoForgeMultipartCompat implements ForgeMultipartCompat {

@Override
public TileEntity overrideTileEntity(World world, NBTTagCompound tag,
TileEntity normal) {
return normal;
}

@Override
public void sendDescPacket(World world, TileEntity entity) {
}

}
3 changes: 2 additions & 1 deletion worldedit-forge/src/main/resources/mcmod.info
Expand Up @@ -14,7 +14,8 @@
"Forge@[${forgeVersion},)"
],
"dependencies": [
"Forge@[${forgeVersion},)"
"Forge@[${forgeVersion},)",
"ForgeMultipart"
],
"dependants": []
}]

0 comments on commit c6b4772

Please sign in to comment.