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


Java Entity.addEntityCrashInfo方法代碼示例

本文整理匯總了Java中net.minecraft.entity.Entity.addEntityCrashInfo方法的典型用法代碼示例。如果您正苦於以下問題:Java Entity.addEntityCrashInfo方法的具體用法?Java Entity.addEntityCrashInfo怎麽用?Java Entity.addEntityCrashInfo使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在net.minecraft.entity.Entity的用法示例。


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

示例1: doRenderEntity

import net.minecraft.entity.Entity; //導入方法依賴的package包/類
public boolean doRenderEntity(Entity entity, double x, double y, double z, float entityYaw, float partialTicks, boolean p_147939_10_)
{
    Render<Entity> render = null;

    try
    {
        render = this.<Entity>getEntityRenderObject(entity);

        if (render != null && this.renderEngine != null)
        {
            try
            {
                if (render instanceof RendererLivingEntity)
                {
                    ((RendererLivingEntity)render).setRenderOutlines(this.renderOutlines);
                }

                render.doRender(entity, x, y, z, entityYaw, partialTicks);
            }
            catch (Throwable throwable2)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable2, "Rendering entity in world"));
            }

            try
            {
                if (!this.renderOutlines)
                {
                    render.doRenderShadowAndFire(entity, x, y, z, entityYaw, partialTicks);
                }
            }
            catch (Throwable throwable1)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable1, "Post-rendering entity in world"));
            }

            if (this.debugBoundingBox && !entity.isInvisible() && !p_147939_10_)
            {
                try
                {
                    this.renderDebugBoundingBox(entity, x, y, z, entityYaw, partialTicks);
                }
                catch (Throwable throwable)
                {
                    throw new ReportedException(CrashReport.makeCrashReport(throwable, "Rendering entity hitbox in world"));
                }
            }
        }
        else if (this.renderEngine != null)
        {
            return false;
        }

        return true;
    }
    catch (Throwable throwable3)
    {
        CrashReport crashreport = CrashReport.makeCrashReport(throwable3, "Rendering entity in world");
        CrashReportCategory crashreportcategory = crashreport.makeCategory("Entity being rendered");
        entity.addEntityCrashInfo(crashreportcategory);
        CrashReportCategory crashreportcategory1 = crashreport.makeCategory("Renderer details");
        crashreportcategory1.addCrashSection("Assigned renderer", render);
        crashreportcategory1.addCrashSection("Location", CrashReportCategory.getCoordinateInfo(x, y, z));
        crashreportcategory1.addCrashSection("Rotation", Float.valueOf(entityYaw));
        crashreportcategory1.addCrashSection("Delta", Float.valueOf(partialTicks));
        throw new ReportedException(crashreport);
    }
}
 
開發者ID:Notoh,項目名稱:DecompiledMinecraft,代碼行數:69,代碼來源:RenderManager.java

示例2: doRenderEntity

import net.minecraft.entity.Entity; //導入方法依賴的package包/類
public boolean doRenderEntity(Entity entity, double x, double y, double z, float entityYaw, float partialTicks, boolean p_147939_10_)
{
    Render render = null;

    try
    {
        render = this.getEntityRenderObject(entity);

        if (render != null && this.renderEngine != null)
        {
            try
            {
                if (render instanceof RendererLivingEntity)
                {
                    ((RendererLivingEntity)render).setRenderOutlines(this.renderOutlines);
                }

                render.doRender(entity, x, y, z, entityYaw, partialTicks);
            }
            catch (Throwable throwable2)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable2, "Rendering entity in world"));
            }

            try
            {
                if (!this.renderOutlines)
                {
                    render.doRenderShadowAndFire(entity, x, y, z, entityYaw, partialTicks);
                }
            }
            catch (Throwable throwable1)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable1, "Post-rendering entity in world"));
            }

            if (this.debugBoundingBox && !entity.isInvisible() && !p_147939_10_)
            {
                try
                {
                    this.renderDebugBoundingBox(entity, x, y, z, entityYaw, partialTicks);
                }
                catch (Throwable throwable)
                {
                    throw new ReportedException(CrashReport.makeCrashReport(throwable, "Rendering entity hitbox in world"));
                }
            }
        }
        else if (this.renderEngine != null)
        {
            return false;
        }

        return true;
    }
    catch (Throwable throwable3)
    {
        CrashReport crashreport = CrashReport.makeCrashReport(throwable3, "Rendering entity in world");
        CrashReportCategory crashreportcategory = crashreport.makeCategory("Entity being rendered");
        entity.addEntityCrashInfo(crashreportcategory);
        CrashReportCategory crashreportcategory1 = crashreport.makeCategory("Renderer details");
        crashreportcategory1.addCrashSection("Assigned renderer", render);
        crashreportcategory1.addCrashSection("Location", CrashReportCategory.getCoordinateInfo(x, y, z));
        crashreportcategory1.addCrashSection("Rotation", Float.valueOf(entityYaw));
        crashreportcategory1.addCrashSection("Delta", Float.valueOf(partialTicks));
        throw new ReportedException(crashreport);
    }
}
 
開發者ID:SkidJava,項目名稱:BaseClient,代碼行數:69,代碼來源:RenderManager.java

示例3: tickPlayers

import net.minecraft.entity.Entity; //導入方法依賴的package包/類
protected void tickPlayers()
{
    super.tickPlayers();
    this.theProfiler.endStartSection("players");

    for (int i = 0; i < this.playerEntities.size(); ++i)
    {
        Entity entity = (Entity)this.playerEntities.get(i);
        Entity entity1 = entity.getRidingEntity();

        if (entity1 != null)
        {
            if (!entity1.isDead && entity1.isPassenger(entity))
            {
                continue;
            }

            entity.dismountRidingEntity();
        }

        this.theProfiler.startSection("tick");

        if (!entity.isDead)
        {
            try
            {
                this.updateEntity(entity);
            }
            catch (Throwable throwable)
            {
                CrashReport crashreport = CrashReport.makeCrashReport(throwable, "Ticking player");
                CrashReportCategory crashreportcategory = crashreport.makeCategory("Player being ticked");
                entity.addEntityCrashInfo(crashreportcategory);
                throw new ReportedException(crashreport);
            }
        }

        this.theProfiler.endSection();
        this.theProfiler.startSection("remove");

        if (entity.isDead)
        {
            int j = entity.chunkCoordX;
            int k = entity.chunkCoordZ;

            if (entity.addedToChunk && this.isChunkLoaded(j, k, true))
            {
                this.getChunkFromChunkCoords(j, k).removeEntity(entity);
            }

            this.loadedEntityList.remove(entity);
            this.onEntityRemoved(entity);
        }

        this.theProfiler.endSection();
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:58,代碼來源:WorldServer.java

示例4: doRenderEntity

import net.minecraft.entity.Entity; //導入方法依賴的package包/類
public void doRenderEntity(Entity entityIn, double x, double y, double z, float yaw, float partialTicks, boolean p_188391_10_)
{
    Render<Entity> render = null;

    try
    {
        render = this.<Entity>getEntityRenderObject(entityIn);

        if (render != null && this.renderEngine != null)
        {
            try
            {
                render.setRenderOutlines(this.renderOutlines);

                if (CustomEntityModels.isActive())
                {
                    this.renderEntity = entityIn;
                    this.renderRender = render;
                }

                render.doRender(entityIn, x, y, z, yaw, partialTicks);
            }
            catch (Throwable throwable2)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable2, "Rendering entity in world"));
            }

            try
            {
                if (!this.renderOutlines)
                {
                    render.doRenderShadowAndFire(entityIn, x, y, z, yaw, partialTicks);
                }
            }
            catch (Throwable throwable1)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable1, "Post-rendering entity in world"));
            }

            if (this.debugBoundingBox && !entityIn.isInvisible() && !p_188391_10_ && !Minecraft.getMinecraft().isReducedDebug())
            {
                try
                {
                    this.renderDebugBoundingBox(entityIn, x, y, z, yaw, partialTicks);
                }
                catch (Throwable throwable)
                {
                    throw new ReportedException(CrashReport.makeCrashReport(throwable, "Rendering entity hitbox in world"));
                }
            }
        }
    }
    catch (Throwable throwable3)
    {
        CrashReport crashreport = CrashReport.makeCrashReport(throwable3, "Rendering entity in world");
        CrashReportCategory crashreportcategory = crashreport.makeCategory("Entity being rendered");
        entityIn.addEntityCrashInfo(crashreportcategory);
        CrashReportCategory crashreportcategory1 = crashreport.makeCategory("Renderer details");
        crashreportcategory1.addCrashSection("Assigned renderer", render);
        crashreportcategory1.addCrashSection("Location", CrashReportCategory.getCoordinateInfo(x, y, z));
        crashreportcategory1.addCrashSection("Rotation", Float.valueOf(yaw));
        crashreportcategory1.addCrashSection("Delta", Float.valueOf(partialTicks));
        throw new ReportedException(crashreport);
    }
}
 
開發者ID:sudofox,項目名稱:Backmemed,代碼行數:66,代碼來源:RenderManager.java

示例5: doRenderEntity

import net.minecraft.entity.Entity; //導入方法依賴的package包/類
public void doRenderEntity(Entity entityIn, double x, double y, double z, float yaw, float partialTicks, boolean p_188391_10_)
{
    Render<Entity> render = null;

    try
    {
        render = this.<Entity>getEntityRenderObject(entityIn);

        if (render != null && this.renderEngine != null)
        {
            try
            {
                render.setRenderOutlines(this.renderOutlines);
                render.doRender(entityIn, x, y, z, yaw, partialTicks);
            }
            catch (Throwable throwable1)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable1, "Rendering entity in world"));
            }

            try
            {
                if (!this.renderOutlines)
                {
                    render.doRenderShadowAndFire(entityIn, x, y, z, yaw, partialTicks);
                }
            }
            catch (Throwable throwable2)
            {
                throw new ReportedException(CrashReport.makeCrashReport(throwable2, "Post-rendering entity in world"));
            }

            if (this.debugBoundingBox && !entityIn.isInvisible() && !p_188391_10_ && !Minecraft.getMinecraft().isReducedDebug())
            {
                try
                {
                    this.renderDebugBoundingBox(entityIn, x, y, z, yaw, partialTicks);
                }
                catch (Throwable throwable)
                {
                    throw new ReportedException(CrashReport.makeCrashReport(throwable, "Rendering entity hitbox in world"));
                }
            }
        }
    }
    catch (Throwable throwable3)
    {
        CrashReport crashreport = CrashReport.makeCrashReport(throwable3, "Rendering entity in world");
        CrashReportCategory crashreportcategory = crashreport.makeCategory("Entity being rendered");
        entityIn.addEntityCrashInfo(crashreportcategory);
        CrashReportCategory crashreportcategory1 = crashreport.makeCategory("Renderer details");
        crashreportcategory1.addCrashSection("Assigned renderer", render);
        crashreportcategory1.addCrashSection("Location", CrashReportCategory.getCoordinateInfo(x, y, z));
        crashreportcategory1.addCrashSection("Rotation", Float.valueOf(yaw));
        crashreportcategory1.addCrashSection("Delta", Float.valueOf(partialTicks));
        throw new ReportedException(crashreport);
    }
}
 
開發者ID:F1r3w477,項目名稱:CustomWorldGen,代碼行數:59,代碼來源:RenderManager.java


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