当前位置: 首页>>代码示例>>Java>>正文


Java Bukkit.getServer方法代码示例

本文整理汇总了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;
}
 
开发者ID:Shynixn,项目名称:PetBlocks,代码行数:24,代码来源:PlayerMetaSQLiteControllerIT.java

示例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;
}
 
开发者ID:Shynixn,项目名称:BlockBall,代码行数:23,代码来源:StatsMySQLControllerTest.java

示例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;
}
 
开发者ID:Shynixn,项目名称:BlockBall,代码行数:23,代码来源:PlayerMetaMySQLControllerTest.java

示例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;
}
 
开发者ID:Shynixn,项目名称:BlockBall,代码行数:24,代码来源:PlayerMetaSQLiteControllerTest.java

示例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());
}
 
开发者ID:HimaJyun,项目名称:Zabbigot,代码行数:20,代码来源:Show.java

示例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;
}
 
开发者ID:Shynixn,项目名称:PetBlocks,代码行数:30,代码来源:ParticleEffectMetaSQLiteControllerIT.java

示例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;
}
 
开发者ID:SamaGames,项目名称:SamaGamesAPI,代码行数:18,代码来源:Reflection.java

示例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;
}
 
开发者ID:edasaki,项目名称:ZentrelaCore,代码行数:18,代码来源:Reflection.java

示例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";
    }
}
 
开发者ID:SamaGames,项目名称:SurvivalAPI,代码行数:12,代码来源:NbtFactory.java

示例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;
}
 
开发者ID:Borlea,项目名称:EchoPet,代码行数:16,代码来源:RemappedClassHandler.java

示例11: getServer

import org.bukkit.Bukkit; //导入方法依赖的package包/类
@Override
public Server getServer() {
    return Bukkit.getServer();
}
 
开发者ID:UraniumMC,项目名称:Uranium,代码行数:5,代码来源:CraftMinecartCommand.java

示例12: server

import org.bukkit.Bukkit; //导入方法依赖的package包/类
public static Server server() {
    return Bukkit.getServer();
}
 
开发者ID:lucko,项目名称:helper,代码行数:4,代码来源:Helper.java

示例13: getServer

import org.bukkit.Bukkit; //导入方法依赖的package包/类
public Server getServer() {
	return Bukkit.getServer();
}
 
开发者ID:GigaGamma,项目名称:SuperiorCraft,代码行数:4,代码来源:SuperiorCraftPackage.java

示例14: injectServer

import org.bukkit.Bukkit; //导入方法依赖的package包/类
public static void injectServer(Server server) {
    if (Bukkit.getServer() == null) {
        Bukkit.setServer(server);
    }
}
 
开发者ID:EntryPointKR,项目名称:MCLibrary,代码行数:6,代码来源:Injector.java


注:本文中的org.bukkit.Bukkit.getServer方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。