Examples of endStartSection()


Examples of net.minecraft.profiler.Profiler.endStartSection()

    }

    profiler.endStartSection("players");
    this.serverConfigManager.sendPlayerInfoToAllPlayers();

    profiler.endStartSection("tickables");
    for (IUpdatePlayerListBox tickable : (Iterable<IUpdatePlayerListBox>) this.tickables) {
      tickable.update();
    }

    if (concurrentTicking) {
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

          iterator.remove();
        }
      }
    }

    theProfiler.endStartSection("remove");
    int var3;
    int var13;
    final List loadedEntityList = this.loadedEntityList;
    boolean tickTT = loadedEntityList instanceof EntityList;
    if (tickTT) {
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    if (concurrentTicking) {
      threadManager.waitForCompletion();
    }

    profiler.endStartSection("connection");
    this.getNetworkThread().networkTick();

    profiler.endStartSection("dim_unloading");
    DimensionManager.unloadWorlds(worldTickTimes);
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

    }

    profiler.endStartSection("connection");
    this.getNetworkThread().networkTick();

    profiler.endStartSection("dim_unloading");
    DimensionManager.unloadWorlds(worldTickTimes);

    profiler.endSection();
  }
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

        }

        onEntityRemoved(entity);
      }
      unloadedEntitySet.clear();
      theProfiler.endStartSection("entities");
      for (var1 = 0; var1 < loadedEntityList.size(); ++var1) {
        weatherEffect = (Entity) loadedEntityList.get(var1);

        if (weatherEffect.ridingEntity != null) {
          if (!weatherEffect.ridingEntity.isDead && weatherEffect.ridingEntity.riddenByEntity == weatherEffect) {
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

          onEntityRemoved(weatherEffect);
        }

        theProfiler.endSection();
      }
      theProfiler.endStartSection("tileEntities");
      scanningTileEntities = true;

      Iterator var14 = loadedTileEntityList.iterator();

      while (var14.hasNext()) {
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

          }
        }
      }
    }

    theProfiler.endStartSection("removingTileEntities");

    final List loadedTileEntityList = this.loadedTileEntityList;
    if (loadedTileEntityList instanceof LoadedTileEntityList) {
      ((LoadedTileEntityList) loadedTileEntityList).manager.batchRemoveTileEntities(tileEntityRemovalSet);
    } else {
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

      tileEntityRemovalSet.clear();
    }

    scanningTileEntities = false;

    theProfiler.endStartSection("pendingTileEntities");

    if (!addedTileEntityList.isEmpty()) {
      for (TileEntity te : (Iterable<TileEntity>) addedTileEntityList) {
        if (te.isInvalid()) {
          Chunk var15 = getChunkIfExists(te.xCoord >> 4, te.zCoord >> 4);
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

        }

        profiler.startSection("forgeTick");
        FMLCommonHandler.instance().onPreWorldTick(world);

        profiler.endStartSection("worldTick");
        world.tick();
        profiler.endStartSection("entityTick");
        world.updateEntities();
        profiler.endStartSection("postForgeTick");
        FMLCommonHandler.instance().onPostWorldTick(world);
View Full Code Here

Examples of net.minecraft.profiler.Profiler.endStartSection()

        profiler.startSection("forgeTick");
        FMLCommonHandler.instance().onPreWorldTick(world);

        profiler.endStartSection("worldTick");
        world.tick();
        profiler.endStartSection("entityTick");
        world.updateEntities();
        profiler.endStartSection("postForgeTick");
        FMLCommonHandler.instance().onPostWorldTick(world);
        profiler.endSection();
        profiler.startSection("tracker");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.