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


Java Player.getPitch方法代码示例

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


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

示例1: place

import cn.nukkit.Player; //导入方法依赖的package包/类
@Override
public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player) {
    if (!(player.isOp() && player.isCreative())) {
        return false;
    }
    int f = 0;
    if (player instanceof Player) {
        double pitch = player.getPitch();
        if (Math.abs(pitch) >= 45) {
            if (pitch < 0) {
                f = 4;
            } else {
                f = 5;
            }
        } else {
            f = player.getDirection().getHorizontalIndex();
        }
    }
    int[] faces = new int[]{4, 2, 5, 3, 0, 1};
    this.meta = faces[f];
    this.getLevel().setBlock(block, this, true, true);
    CompoundTag nbt = new CompoundTag()
            .putString("id", BlockEntity.COMMAND_BLOCK)
            .putInt("x", this.getFloorX())
            .putInt("y", this.getFloorY())
            .putInt("z", this.getFloorZ())
            .putInt("commandBlockMode", this.getMode());

    new BlockEntityCommandBlock(this.level.getChunk(this.getFloorX() >> 4, this.getFloorZ() >> 4), nbt);

    return true;
}
 
开发者ID:JupiterDevelopmentTeam,项目名称:Jupiter,代码行数:33,代码来源:BlockCommand.java

示例2: place

import cn.nukkit.Player; //导入方法依赖的package包/类
@Override
public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player) {
    int f = 0;
    if (player instanceof Player) {
        double pitch = player.getPitch();
        if (Math.abs(pitch) >= 45) {
            if (pitch < 0) {
                f = 4;
            } else {
                f = 5;
            }
        } else {
            f = player.getDirection().getHorizontalIndex();
        }
    }
    int[] faces = new int[]{4, 2, 5, 3, 0, 1};
    this.meta = faces[f];
    this.getLevel().setBlock(block, this, true, true);

    CompoundTag nbt = new CompoundTag()
            .putList(new ListTag<>("Items"))
            .putString("id", BlockEntity.DISPENSER)
            .putInt("x", (int) this.x)
            .putInt("y", (int) this.y)
            .putInt("z", (int) this.z);

    if (item.hasCustomName()) {
        nbt.putString("CustomName", item.getCustomName());
    }

    if (item.hasCustomBlockData()) {
        Map<String, Tag> customData = item.getCustomBlockData().getTags();
        for (Map.Entry<String, Tag> tag : customData.entrySet()) {
            nbt.put(tag.getKey(), tag.getValue());
        }
    }

    new BlockEntityDispenser(this.getLevel().getChunk((int) this.x >> 4, (int) this.z >> 4), nbt);

    return true;
}
 
开发者ID:JupiterDevelopmentTeam,项目名称:Jupiter,代码行数:42,代码来源:BlockDispenser.java

示例3: place

import cn.nukkit.Player; //导入方法依赖的package包/类
@Override
public boolean place(Item item, Block block, Block target, BlockFace face, double fx, double fy, double fz, Player player) {
    int f = 0;
    if (player instanceof Player) {
        double pitch = player.getPitch();
        if (Math.abs(pitch) >= 45) {
            if (pitch < 0) {
                f = 4;
            } else {
                f = 5;
            }
        } else {
            f = player.getDirection().getHorizontalIndex();
        }
    }
    int[] faces = new int[]{4, 2, 5, 3, 0, 1};
    this.meta = faces[f];
    this.getLevel().setBlock(block, this, true, true);

    CompoundTag nbt = new CompoundTag()
            .putList(new ListTag<>("Items"))
            .putString("id", BlockEntity.DROPPER)
            .putInt("x", (int) this.x)
            .putInt("y", (int) this.y)
            .putInt("z", (int) this.z);

    if (item.hasCustomName()) {
        nbt.putString("CustomName", item.getCustomName());
    }

    if (item.hasCustomBlockData()) {
        Map<String, Tag> customData = item.getCustomBlockData().getTags();
        for (Map.Entry<String, Tag> tag : customData.entrySet()) {
            nbt.put(tag.getKey(), tag.getValue());
        }
    }

    new BlockEntityDropper(this.getLevel().getChunk((int) this.x >> 4, (int) this.z >> 4), nbt);

    return true;
}
 
开发者ID:JupiterDevelopmentTeam,项目名称:Jupiter,代码行数:42,代码来源:BlockDropper.java


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