Remove legacy compatibility module for glowstone.

(Should have a look at GlowstonePlusPlus, perhaps.)
This commit is contained in:
asofold 2016-06-15 23:08:59 +02:00
parent 77465b09e3
commit d521a99ffc
6 changed files with 0 additions and 186 deletions

View File

@ -1,67 +0,0 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>fr.neatmonster</groupId>
<artifactId>ncpcompatglowstone</artifactId>
<packaging>jar</packaging>
<name>NCPCompatGlowstone</name>
<version>1.1-SNAPSHOT</version>
<parent>
<groupId>fr.neatmonster</groupId>
<artifactId>nocheatplus-parent</artifactId>
<version>1.1-SNAPSHOT</version>
</parent>
<repositories>
<repository>
<id>glowstone-repo</id>
<name>Glowstone Repository</name>
<url>http://repo.glowstone.net/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>org.bukkit</groupId>
<artifactId>bukkit</artifactId>
<version>1.8.8-R0.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fr.neatmonster</groupId>
<artifactId>ncpcore</artifactId>
<version>1.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>net.glowstone</groupId>
<artifactId>glowstone</artifactId>
<version>LATEST</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>fr.neatmonster</groupId>
<artifactId>ncpcompatbukkit</artifactId>
<version>1.1-SNAPSHOT</version>
<scope>provided</scope>
</dependency>
</dependencies>
<description>Native compatibility for Glowstone (experimental):
http://glowstone.net
</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</build>
</project>

View File

@ -1,29 +0,0 @@
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.neatmonster.nocheatplus.compat.glowstone;
import org.bukkit.World;
import fr.neatmonster.nocheatplus.compat.bukkit.BlockCacheBukkit;
public class BlockCacheGlowstone extends BlockCacheBukkit{
public BlockCacheGlowstone(World world) {
super(world);
}
// TODO: What now? :p
}

View File

@ -1,76 +0,0 @@
/*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.neatmonster.nocheatplus.compat.glowstone;
import net.glowstone.GlowServer;
import net.glowstone.entity.GlowPlayer;
import org.bukkit.Bukkit;
import org.bukkit.World;
import org.bukkit.command.CommandMap;
import org.bukkit.entity.Player;
import org.bukkit.event.entity.EntityDamageEvent.DamageCause;
import fr.neatmonster.nocheatplus.compat.AlmostBoolean;
import fr.neatmonster.nocheatplus.compat.bukkit.MCAccessBukkit;
import fr.neatmonster.nocheatplus.utilities.BlockCache;
public class MCAccessGlowstone extends MCAccessBukkit{
// TODO: Glowstone: nodamageticks > 0 => damage(...) won't work (no updating).
/**
* Constructor to let it fail.
*/
public MCAccessGlowstone() {
super();
getCommandMap();
// TODO: Nail it down further.
}
@Override
public String getMCVersion() {
// Might work with earlier versions.
return "1.8";
}
@Override
public String getServerVersionTag() {
// TODO: Consider version specific ?
return "Glowstone";
}
@Override
public CommandMap getCommandMap() {
return ((GlowServer) Bukkit.getServer()).getCommandMap();
}
@Override
public BlockCache getBlockCache(final World world) {
return new BlockCacheGlowstone(world);
}
@Override
public void dealFallDamage(final Player player, final double damage) {
// NOTE: Fires a damage event.
((GlowPlayer) player).damage(damage, DamageCause.FALL);
}
@Override
public AlmostBoolean dealFallDamageFiresAnEvent() {
return AlmostBoolean.YES; // Assumption (it's native access).
}
}

View File

@ -48,11 +48,6 @@
<artifactId>ncpcompatprotocollib</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>fr.neatmonster</groupId>
<artifactId>ncpcompatglowstone</artifactId>
<version>1.1-SNAPSHOT</version>
</dependency>
</dependencies>
</profile>
<profile>

View File

@ -23,7 +23,6 @@ import org.bukkit.Bukkit;
import fr.neatmonster.nocheatplus.compat.MCAccess;
import fr.neatmonster.nocheatplus.compat.bukkit.MCAccessBukkit;
import fr.neatmonster.nocheatplus.compat.cbreflect.MCAccessCBReflect;
import fr.neatmonster.nocheatplus.compat.glowstone.MCAccessGlowstone;
import fr.neatmonster.nocheatplus.logging.StaticLog;
/**
@ -67,13 +66,6 @@ public class MCAccessFactory {
}
}
// Glowstone.
try {
return new MCAccessGlowstone();
} catch(Throwable t) {
throwables.add(t);
}
// Try to set up api-only access (since 1.4.6).
try {
mcAccess = new MCAccessBukkit();

View File

@ -31,7 +31,6 @@
<module>NCPCore</module>
<module>NCPCompatBukkit</module>
<module>NCPCompatProtocolLib</module>
<module>NCPCompatGlowstone</module>
<module>NCPPlugin</module>
<module>NoCheatPlus</module>
</modules>