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


Java GalacticraftRegistry.getSpaceStationData方法代码示例

本文整理汇总了Java中micdoodle8.mods.galacticraft.api.GalacticraftRegistry.getSpaceStationData方法的典型用法代码示例。如果您正苦于以下问题:Java GalacticraftRegistry.getSpaceStationData方法的具体用法?Java GalacticraftRegistry.getSpaceStationData怎么用?Java GalacticraftRegistry.getSpaceStationData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在micdoodle8.mods.galacticraft.api.GalacticraftRegistry的用法示例。


在下文中一共展示了GalacticraftRegistry.getSpaceStationData方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getSpaceStationRecipe

import micdoodle8.mods.galacticraft.api.GalacticraftRegistry; //导入方法依赖的package包/类
public static SpaceStationRecipe getSpaceStationRecipe(int planetID)
{
    for (SpaceStationType type : GalacticraftRegistry.getSpaceStationData())
    {
        if (type.getWorldToOrbitID() == planetID)
        {
            return type.getRecipeForSpaceStation();
        }
    }

    return null;
}
 
开发者ID:4Space,项目名称:4Space-5,代码行数:13,代码来源:WorldUtil.java

示例2: getSpaceStationRecipe

import micdoodle8.mods.galacticraft.api.GalacticraftRegistry; //导入方法依赖的package包/类
public static SpaceStationRecipe getSpaceStationRecipe(int planetID)
/*     */   {
/* 845 */     for (SpaceStationType type : GalacticraftRegistry.getSpaceStationData())
/*     */     {
/* 847 */       if (type.getWorldToOrbitID() == planetID)
/*     */       {
/* 849 */         return type.getRecipeForSpaceStation();
/*     */       }
/*     */     }
/*     */ 
/* 853 */     return null;
/*     */   }
 
开发者ID:Nathor40000,项目名称:Connection,代码行数:13,代码来源:WorldUtil.java

示例3: canCreateSpaceStation

import micdoodle8.mods.galacticraft.api.GalacticraftRegistry; //导入方法依赖的package包/类
protected boolean canCreateSpaceStation(CelestialBody atBody)
    {
        if (this.mapMode || ConfigManagerCore.disableSpaceStationCreation)
        {
            return false;
        }

        if (!atBody.getReachable() || (this.possibleBodies != null && !this.possibleBodies.contains(atBody)))
        {
            // If parent body is unreachable, the satellite is also unreachable
            return false;
        }

        boolean foundRecipe = false;
        for (SpaceStationType type : GalacticraftRegistry.getSpaceStationData())
        {
            if (type.getWorldToOrbitID() == atBody.getDimensionID())
            {
                foundRecipe = true;
            }
        }

        if (!foundRecipe)
        {
            return false;
        }

        if (!ClientProxyCore.clientSpaceStationID.containsKey(atBody.getDimensionID()))
        {
            return true;
        }

        int resultID = ClientProxyCore.clientSpaceStationID.get(atBody.getDimensionID());

        if (resultID != 0 && resultID != -1)
//        if (ClientProxyCore.clientSpaceStationID != 0 && ClientProxyCore.clientSpaceStationID != -1)
        {
            return false;
        }

        return true;
    }
 
开发者ID:4Space,项目名称:4Space-5,代码行数:43,代码来源:GuiCelestialSelection.java


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