當前位置: 首頁>>代碼示例>>Java>>正文


Java ResourceLocation類代碼示例

本文整理匯總了Java中net.minecraft.util.ResourceLocation的典型用法代碼示例。如果您正苦於以下問題:Java ResourceLocation類的具體用法?Java ResourceLocation怎麽用?Java ResourceLocation使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


ResourceLocation類屬於net.minecraft.util包,在下文中一共展示了ResourceLocation類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: writeEntityToNBT

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
/**
 * (abstract) Protected helper method to write subclass entity data to NBT.
 */
protected void writeEntityToNBT(NBTTagCompound tagCompound)
{
    if (this.hasDisplayTile())
    {
        tagCompound.setBoolean("CustomDisplayTile", true);
        IBlockState iblockstate = this.getDisplayTile();
        ResourceLocation resourcelocation = (ResourceLocation)Block.blockRegistry.getNameForObject(iblockstate.getBlock());
        tagCompound.setString("DisplayTile", resourcelocation == null ? "" : resourcelocation.toString());
        tagCompound.setInteger("DisplayData", iblockstate.getBlock().getMetaFromState(iblockstate));
        tagCompound.setInteger("DisplayOffset", this.getDisplayTileOffset());
    }

    if (this.entityName != null && this.entityName.length() > 0)
    {
        tagCompound.setString("CustomName", this.entityName);
    }
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:21,代碼來源:EntityMinecart.java

示例2: onRenderPlayer

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
@SubscribeEvent
public static void onRenderPlayer(RenderPlayerEvent.Post event)
{
    EntityPlayer player = event.getEntityPlayer();
    String uuid = player.getUUID(player.getGameProfile()).toString();
    if(player instanceof AbstractClientPlayer && UUIDS.contains(uuid) && !done.contains(player))
    {
        AbstractClientPlayer clplayer = (AbstractClientPlayer) player;
        if(clplayer.hasPlayerInfo())
        {
            NetworkPlayerInfo info = ReflectionHelper.getPrivateValue(AbstractClientPlayer.class, clplayer, ObfuscatedNames.PLAYER_INFO);
            Map<MinecraftProfileTexture.Type, ResourceLocation> textures = ReflectionHelper.getPrivateValue(NetworkPlayerInfo.class, info, ObfuscatedNames.PLAYER_TEXTURES);
            ResourceLocation loc = new ResourceLocation("proxyslib", "textures/whoknows/dev_cape.png");
            textures.put(MinecraftProfileTexture.Type.CAPE, loc);
            textures.put(MinecraftProfileTexture.Type.ELYTRA, loc);
            done.add(player);
        }
    }
}
 
開發者ID:ProxyNeko,項目名稱:Proxys-Lib,代碼行數:20,代碼來源:NekoCapeHandler.java

示例3: handleItemState

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
@Override
@Nonnull
public IBakedModel handleItemState(@Nonnull IBakedModel originalModel, @Nonnull ItemStack stack,
		@Nullable World world, @Nullable EntityLivingBase entity) {

	if (stack.getItem() != ModItems.sword) {
		return originalModel;
	}

	BakedSwordModel model = (BakedSwordModel) originalModel;

	String key = IBladeTool.getBladeMat(stack).getName() + "|"
			+ ICrossguardTool.getCrossguardMat(stack).getName() + "|"
			+ IHandleTool.getHandleMat(stack).getName() + "|"
			+ IAdornedTool.getAdornmentMat(stack).getName();

	if (!model.cache.containsKey(key)) {
		ImmutableMap.Builder<String, String> builder = ImmutableMap.builder();
		builder.put("blade", IBladeTool.getBladeMat(stack).getName());
		builder.put("crossguard", ICrossguardTool.getCrossguardMat(stack).getName());
		builder.put("handle", IHandleTool.getHandleMat(stack).getName());
		if (IAdornedTool.getAdornmentMat(stack) != ModMaterials.ADORNMENT_NULL) {
			builder.put("adornment", IAdornedTool.getAdornmentMat(stack).getName());
		}
		IModel parent = model.parent.retexture(builder.build());
		Function<ResourceLocation, TextureAtlasSprite> textureGetter;
		textureGetter = new Function<ResourceLocation, TextureAtlasSprite>() {
			public TextureAtlasSprite apply(ResourceLocation location) {
				return Minecraft.getMinecraft().getTextureMapBlocks().getAtlasSprite(location.toString());
			}
		};
		IBakedModel bakedModel = parent.bake(new SimpleModelState(model.transforms), model.format,
				textureGetter);
		model.cache.put(key, bakedModel);
		return bakedModel;
	}

	return model.cache.get(key);
}
 
開發者ID:the-realest-stu,項目名稱:Adventurers-Toolbox,代碼行數:40,代碼來源:SwordModel.java

示例4: getTextureHeight

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
private static int getTextureHeight(String p_getTextureHeight_0_, int p_getTextureHeight_1_)
{
    try
    {
        InputStream inputstream = Config.getResourceStream(new ResourceLocation(p_getTextureHeight_0_));

        if (inputstream == null)
        {
            return p_getTextureHeight_1_;
        }
        else
        {
            BufferedImage bufferedimage = ImageIO.read(inputstream);
            return bufferedimage == null ? p_getTextureHeight_1_ : bufferedimage.getHeight();
        }
    }
    catch (IOException var4)
    {
        return p_getTextureHeight_1_;
    }
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:22,代碼來源:CustomColorizer.java

示例5: makeProperties

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
private static RandomMobsProperties makeProperties(ResourceLocation p_makeProperties_0_)
{
    String s = p_makeProperties_0_.getResourcePath();
    ResourceLocation resourcelocation = getPropertyLocation(p_makeProperties_0_);

    if (resourcelocation != null)
    {
        RandomMobsProperties randommobsproperties = parseProperties(resourcelocation, p_makeProperties_0_);

        if (randommobsproperties != null)
        {
            return randommobsproperties;
        }
    }

    ResourceLocation[] aresourcelocation = getTextureVariants(p_makeProperties_0_);
    return new RandomMobsProperties(s, aresourcelocation);
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:19,代碼來源:RandomMobs.java

示例6: getChestModel

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
@Override
public ResourceLocation getChestModel(ItemStack stack)
{
    NBTTagCompound logNbt = stack.getTagCompound().getCompoundTag("WoodLog");
    ItemStack log = new ItemStack(logNbt);

    if (log.getItem() == Item.getItemFromBlock(Blocks.LOG))
    {
        return locationFromName("barrel_" + names[log.getItemDamage()]);
    } else if (log.getItem() == Item.getItemFromBlock(Blocks.LOG2))
    {
        return locationFromName("barrel_" + names[log.getItemDamage() + 4]);
    } else if (log.getItem() == Item.getItemFromBlock(Blocks.BEDROCK))
    {
        return locationFromName("barrel_creative");
    }
    return locationFromName("barrel_oak");
}
 
開發者ID:cubex2,項目名稱:chesttransporter,代碼行數:19,代碼來源:FzBarrel.java

示例7: createRecipesFor

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
@Nonnull
@Override
public Collection<MachineRecipe> createRecipesFor(ResourceLocation owningMachineName) {
    Map<ItemStack, ItemStack> inputOutputMap = FurnaceRecipes.instance().getSmeltingList();
    List<MachineRecipe> smeltingRecipes = new ArrayList<>(inputOutputMap.size());
    int incId = 0;
    for (Map.Entry<ItemStack, ItemStack> smelting : inputOutputMap.entrySet()) {
        MachineRecipe recipe = createRecipeShell(
                new ResourceLocation("minecraft", "smelting_recipe_" + incId),
                owningMachineName,
                120, 0);
        recipe.addRequirement(new ComponentRequirement.RequirementItem(MachineComponent.IOType.INPUT,
                ItemUtils.copyStackWithSize(smelting.getKey(), smelting.getKey().getCount())));
        recipe.addRequirement(new ComponentRequirement.RequirementItem(MachineComponent.IOType.OUTPUT,
                ItemUtils.copyStackWithSize(smelting.getValue(), smelting.getValue().getCount())));
        recipe.addRequirement(new ComponentRequirement.RequirementEnergy(MachineComponent.IOType.INPUT,
                20));
        smeltingRecipes.add(recipe);
        incId++;
    }
    return smeltingRecipes;
}
 
開發者ID:HellFirePvP,項目名稱:ModularMachinery,代碼行數:23,代碼來源:AdapterMinecraftFurnace.java

示例8: getAllResources

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
public List<IResource> getAllResources(ResourceLocation location) throws IOException
{
    List<IResource> list = Lists.<IResource>newArrayList();
    ResourceLocation resourcelocation = getLocationMcmeta(location);

    for (IResourcePack iresourcepack : this.resourcePacks)
    {
        if (iresourcepack.resourceExists(location))
        {
            InputStream inputstream = iresourcepack.resourceExists(resourcelocation) ? this.getInputStream(resourcelocation, iresourcepack) : null;
            list.add(new SimpleResource(iresourcepack.getPackName(), location, this.getInputStream(location, iresourcepack), inputstream, this.frmMetadataSerializer));
        }
    }

    if (list.isEmpty())
    {
        throw new FileNotFoundException(location.toString());
    }
    else
    {
        return list;
    }
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:24,代碼來源:FallbackResourceManager.java

示例9: getByNameOrId

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
@Nullable

    /**
     * Tries to get an Item by it's name (e.g. minecraft:apple) or a String representation of a numerical ID. If both
     * fail, null is returned.
     */
    public static Item getByNameOrId(String id)
    {
        Item item = (Item)REGISTRY.getObject(new ResourceLocation(id));

        if (item == null)
        {
            try
            {
                return getItemById(Integer.parseInt(id));
            }
            catch (NumberFormatException var3)
            {
                ;
            }
        }

        return item;
    }
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:25,代碼來源:Item.java

示例10: getResourceLocation

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
public static ResourceLocation getResourceLocation(String basePath, String path, String extension)
{
    if (!path.endsWith(extension))
    {
        path = path + extension;
    }

    if (!path.contains("/"))
    {
        path = basePath + "/" + path;
    }
    else if (path.startsWith("./"))
    {
        path = basePath + "/" + path.substring(2);
    }
    else if (path.startsWith("~/"))
    {
        path = "optifine/" + path.substring(2);
    }

    return new ResourceLocation(path);
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:23,代碼來源:CustomEntityModelParser.java

示例11: registerFunction

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
public static <T extends LootFunction> void registerFunction(LootFunction.Serializer <? extends T > p_186582_0_)
{
    ResourceLocation resourcelocation = p_186582_0_.getFunctionName();
    Class<T> oclass = (Class<T>)p_186582_0_.getFunctionClass();

    if (NAME_TO_SERIALIZER_MAP.containsKey(resourcelocation))
    {
        throw new IllegalArgumentException("Can\'t re-register item function name " + resourcelocation);
    }
    else if (CLASS_TO_SERIALIZER_MAP.containsKey(oclass))
    {
        throw new IllegalArgumentException("Can\'t re-register item function class " + oclass.getName());
    }
    else
    {
        NAME_TO_SERIALIZER_MAP.put(resourcelocation, p_186582_0_);
        CLASS_TO_SERIALIZER_MAP.put(oclass, p_186582_0_);
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:20,代碼來源:LootFunctionManager.java

示例12: Tier

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
public Tier(int tier, int width, int height, int guiGridX, int guiGridY, int guiResultX, int guiResultY, ResourceLocation guiTexture, int guiJeiStartX, int guiJeiStartY, ResourceLocation modelTexture, ResourceLocation obj, ResourceLocation smartModel, boolean areItemsFloating, String unlocalizedName)
{
    this.tier = tier;
    this.width = width;
    this.height = height;
    this.guiGridX = guiGridX;
    this.guiGridY = guiGridY;
    this.guiResultX = guiResultX;
    this.guiResultY = guiResultY;
    this.guiTexture = guiTexture;
    this.guiJeiStartX = guiJeiStartX;
    this.guiJeiStartY = guiJeiStartY;
    this.modelTexture = modelTexture;
    this.obj = obj;
    this.smartModel = smartModel;
    this.areItemsFloating = areItemsFloating;
    this.unlocalizedName = unlocalizedName;
}
 
開發者ID:PearXTeam,項目名稱:PurificatiMagicae,代碼行數:19,代碼來源:MagibenchRegistry.java

示例13: serialize

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
public void serialize(JsonObject object, EnchantRandomly functionClazz, JsonSerializationContext serializationContext)
{
    if (!functionClazz.enchantments.isEmpty())
    {
        JsonArray jsonarray = new JsonArray();

        for (Enchantment enchantment : functionClazz.enchantments)
        {
            ResourceLocation resourcelocation = (ResourceLocation)Enchantment.REGISTRY.getNameForObject(enchantment);

            if (resourcelocation == null)
            {
                throw new IllegalArgumentException("Don\'t know how to serialize enchantment " + enchantment);
            }

            jsonarray.add(new JsonPrimitive(resourcelocation.toString()));
        }

        object.add("enchantments", jsonarray);
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:22,代碼來源:EnchantRandomly.java

示例14: collectFilesFixed

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
private static String[] collectFilesFixed(IResourcePack p_collectFilesFixed_0_, String[] p_collectFilesFixed_1_)
{
    if (p_collectFilesFixed_1_ == null)
    {
        return new String[0];
    }
    else
    {
        List list = new ArrayList();

        for (int i = 0; i < p_collectFilesFixed_1_.length; ++i)
        {
            String s = p_collectFilesFixed_1_[i];
            ResourceLocation resourcelocation = new ResourceLocation(s);

            if (p_collectFilesFixed_0_.resourceExists(resourcelocation))
            {
                list.add(s);
            }
        }

        String[] astring = (String[])((String[])list.toArray(new String[list.size()]));
        return astring;
    }
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:26,代碼來源:ConnectedUtils.java

示例15: CraftingControl

import net.minecraft.util.ResourceLocation; //導入依賴的package包/類
public <T extends IRecipeWrapper> CraftingControl(IRecipeCategory<T> category, T wrapper, ResourceLocation border, int borderSize)
{
    super(border, 2);
    this.title = category.getTitle();
    off = DrawingTools.getStringHeight(title) + 2;
    IRecipeRegistry reg = PMJeiPlugin.RUNTIME.getRecipeRegistry();
    IRecipeLayoutDrawable draw = reg.createRecipeLayoutDrawable(category, wrapper, reg.createFocus(IFocus.Mode.OUTPUT, new ItemStack(Items.STICK /*hack*/)));
    setWidth(category.getBackground().getWidth() + size * 2);
    setHeight(category.getBackground().getHeight() + size * 2);
    draw.setPosition(size, size);
    this.draw = draw;
}
 
開發者ID:PearXTeam,項目名稱:PurificatiMagicae,代碼行數:13,代碼來源:CraftingControl.java


注:本文中的net.minecraft.util.ResourceLocation類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。