本文整理汇总了Java中org.bukkit.Bukkit.getServer方法的典型用法代码示例。如果您正苦于以下问题:Java Bukkit.getServer方法的具体用法?Java Bukkit.getServer怎么用?Java Bukkit.getServer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.bukkit.Bukkit
的用法示例。
在下文中一共展示了Bukkit.getServer方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: mockPlugin
import org.bukkit.Bukkit; //导入方法依赖的package包/类
private static Plugin mockPlugin() {
final YamlConfiguration configuration = new YamlConfiguration();
configuration.set("sql.enabled", false);
configuration.set("sql.host", "localhost");
configuration.set("sql.port", 3306);
configuration.set("sql.database", "db");
configuration.set("sql.username", "root");
configuration.set("sql.password", "");
final Plugin plugin = mock(Plugin.class);
if (Bukkit.getServer() == null) {
final Server server = mock(Server.class);
when(server.getLogger()).thenReturn(Logger.getGlobal());
Bukkit.setServer(server);
}
new File("PetBlocks.db").delete();
when(plugin.getDataFolder()).thenReturn(new File("PetBlocks"));
when(plugin.getConfig()).thenReturn(configuration);
when(plugin.getResource(any(String.class))).thenAnswer(invocationOnMock -> {
final String file = invocationOnMock.getArgument(0);
return Thread.currentThread().getContextClassLoader().getResourceAsStream(file);
});
return plugin;
}
示例2: mockPlugin
import org.bukkit.Bukkit; //导入方法依赖的package包/类
private static Plugin mockPlugin() {
final YamlConfiguration configuration = new YamlConfiguration();
configuration.set("sql.enabled", false);
configuration.set("sql.host", "localhost");
configuration.set("sql.port", 3306);
configuration.set("sql.database", "db");
configuration.set("sql.username", "root");
configuration.set("sql.password", "");
final Plugin plugin = mock(Plugin.class);
final Server server = mock(Server.class);
when(server.getLogger()).thenReturn(Logger.getGlobal());
if (Bukkit.getServer() == null)
Bukkit.setServer(server);
new File("BlockBall/BlockBall.db").delete();
when(plugin.getDataFolder()).thenReturn(new File("BlockBall"));
when(plugin.getConfig()).thenReturn(configuration);
when(plugin.getResource(any(String.class))).thenAnswer(invocationOnMock -> {
final String file = invocationOnMock.getArgument(0);
return Thread.currentThread().getContextClassLoader().getResourceAsStream(file);
});
return plugin;
}
示例3: mockPlugin
import org.bukkit.Bukkit; //导入方法依赖的package包/类
private static Plugin mockPlugin() {
final YamlConfiguration configuration = new YamlConfiguration();
configuration.set("sql.enabled", false);
configuration.set("sql.host", "localhost");
configuration.set("sql.port", 3306);
configuration.set("sql.database", "db");
configuration.set("sql.username", "root");
configuration.set("sql.password", "");
final Plugin plugin = mock(Plugin.class);
final Server server = mock(Server.class);
when(server.getLogger()).thenReturn(Logger.getGlobal());
if(Bukkit.getServer() == null)
Bukkit.setServer(server);
new File("BlockBall/BlockBall.db").delete();
when(plugin.getDataFolder()).thenReturn(new File("BlockBall"));
when(plugin.getConfig()).thenReturn(configuration);
when(plugin.getResource(any(String.class))).thenAnswer(invocationOnMock -> {
final String file = invocationOnMock.getArgument(0);
return Thread.currentThread().getContextClassLoader().getResourceAsStream(file);
});
return plugin;
}
示例4: mockPlugin
import org.bukkit.Bukkit; //导入方法依赖的package包/类
private static Plugin mockPlugin() {
final YamlConfiguration configuration = new YamlConfiguration();
configuration.set("sql.enabled", false);
configuration.set("sql.host", "localhost");
configuration.set("sql.port", 3306);
configuration.set("sql.database", "db");
configuration.set("sql.username", "root");
configuration.set("sql.password", "");
final Plugin plugin = mock(Plugin.class);
final Server server = mock(Server.class);
when(server.getLogger()).thenReturn(Logger.getGlobal());
if(Bukkit.getServer() == null)
Bukkit.setServer(server);
Factory.disable();
new File("BlockBall/BlockBall.db").delete();
when(plugin.getDataFolder()).thenReturn(new File("BlockBall"));
when(plugin.getConfig()).thenReturn(configuration);
when(plugin.getResource(any(String.class))).thenAnswer(invocationOnMock -> {
final String file = invocationOnMock.getArgument(0);
return Thread.currentThread().getContextClassLoader().getResourceAsStream(file);
});
return plugin;
}
示例5: exec
import org.bukkit.Bukkit; //导入方法依赖的package包/类
@Override
protected void exec(CommandSender sender) {
/*
* ======== Zabbigot (Player: 0/20) ========
* TPS: [####################] 20.00 (100.0%)
* MEM: [###################_] 7832.4MB/8192.0MB (95.6%)
*/
Server server = Bukkit.getServer();
sender.sendMessage(ChatColor.GREEN + "========" + ChatColor.RESET
+ " Zabbigot (Player: "
+ server.getOnlinePlayers().size()
+ "/"
+ server.getMaxPlayers()
+ ") " + ChatColor.GREEN + "========");
sender.sendMessage(formatTps(watcher.getTPS()));
sender.sendMessage(formatMem());
}
示例6: mockPlugin
import org.bukkit.Bukkit; //导入方法依赖的package包/类
private static Plugin mockPlugin() {
final Server server = mock(Server.class);
when(server.getLogger()).thenReturn(Logger.getGlobal());
if(Bukkit.getServer() == null)
Bukkit.setServer(server);
try {
final Field field = PetBlocksPlugin.class.getDeclaredField("logger");
field.setAccessible(true);
field.set(null, Logger.getGlobal());
} catch (IllegalAccessException | NoSuchFieldException e) {
Assert.fail();
}
final YamlConfiguration configuration = new YamlConfiguration();
configuration.set("sql.enabled",false);
configuration.set("sql.host", "localhost");
configuration.set("sql.port", 3306);
configuration.set("sql.database", "db");
configuration.set("sql.username", "root");
configuration.set("sql.password", "");
final Plugin plugin = mock(Plugin.class);
new File("PetBlocks.db").delete();
when(plugin.getDataFolder()).thenReturn(new File("PetBlocks"));
when(plugin.getConfig()).thenReturn(configuration);
when(plugin.getResource(any(String.class))).thenAnswer(invocationOnMock -> {
final String file = invocationOnMock.getArgument(0);
return Thread.currentThread().getContextClassLoader().getResourceAsStream(file);
});
return plugin;
}
示例7: getVersion
import org.bukkit.Bukkit; //导入方法依赖的package包/类
/**
* Gets the version string from the package name of the CraftBukkit server implementation.
* This is needed to bypass the JAR package name changing on each update.
* @return The version string of the OBC and NMS packages, <em>including the trailing dot</em>.
*/
public synchronized static String getVersion() {
if(_versionString == null){
if(Bukkit.getServer() == null){
// The server hasn't started, static initializer call?
return null;
}
String name = Bukkit.getServer().getClass().getPackage().getName();
_versionString = name.substring(name.lastIndexOf('.') + 1) + ".";
}
return _versionString;
}
示例8: getVersion
import org.bukkit.Bukkit; //导入方法依赖的package包/类
/**
* Gets the version string from the package name of the CraftBukkit server implementation.
* This is needed to bypass the JAR package name changing on each update.
* @return The version string of the OBC and NMS packages, <em>including the trailing dot</em>.
*/
public synchronized static String getVersion() {
if (_versionString == null) {
if (Bukkit.getServer() == null) {
// The server hasn't started, static initializer call?
return null;
}
String name = Bukkit.getServer().getClass().getPackage().getName();
_versionString = name.substring(name.lastIndexOf('.') + 1) + ".";
}
return _versionString;
}
示例9: getPackageName
import org.bukkit.Bukkit; //导入方法依赖的package包/类
private String getPackageName() {
Server server = Bukkit.getServer();
String name = server != null ? server.getClass().getPackage().getName() : null;
if (name != null && name.contains("craftbukkit")) {
return name;
} else {
// Fallback
return "org.bukkit.craftbukkit.v1_7_R3";
}
}
示例10: initialize
import org.bukkit.Bukkit; //导入方法依赖的package包/类
protected RemappedClassHandler initialize() throws UnsupportedOperationException, IllegalStateException {
if (Bukkit.getServer() == null || !Bukkit.getServer().getVersion().contains("MCPC-Plus")) {
throw new UnsupportedOperationException("Remapper not available!");
}
this.remapper = ClassTemplate.create(this.classLoader.getClass()).getField("remapper").get(getClass().getClassLoader());
if (this.remapper == null) {
throw new IllegalStateException("Remapper is NULL!");
}
Class<?> remapperClass = this.remapper.getClass();
this.map = ClassTemplate.create(remapperClass).getMethod("map", String.class);
return this;
}
示例11: getServer
import org.bukkit.Bukkit; //导入方法依赖的package包/类
@Override
public Server getServer() {
return Bukkit.getServer();
}
示例12: server
import org.bukkit.Bukkit; //导入方法依赖的package包/类
public static Server server() {
return Bukkit.getServer();
}
示例13: getServer
import org.bukkit.Bukkit; //导入方法依赖的package包/类
public Server getServer() {
return Bukkit.getServer();
}
示例14: injectServer
import org.bukkit.Bukkit; //导入方法依赖的package包/类
public static void injectServer(Server server) {
if (Bukkit.getServer() == null) {
Bukkit.setServer(server);
}
}