refactor GriddedDataCellManager package
All checks were successful
studiorailgun/Renderer/pipeline/head This commit looks good

This commit is contained in:
austin 2025-03-28 15:10:54 -04:00
parent 7df05d611d
commit 1c50468bdf
7 changed files with 9 additions and 6 deletions

View File

@ -3,8 +3,8 @@ package electrosphere.client.ui.menu.debug;
import electrosphere.engine.Globals;
import electrosphere.renderer.ui.imgui.ImGuiWindow;
import electrosphere.renderer.ui.imgui.ImGuiWindow.ImGuiWindowCallback;
import electrosphere.server.datacell.GriddedDataCellManager;
import electrosphere.server.datacell.Realm;
import electrosphere.server.datacell.gridded.GriddedDataCellManager;
import imgui.ImGui;
/**

View File

@ -4,7 +4,7 @@ import electrosphere.engine.Globals;
import electrosphere.engine.signal.Signal.SignalType;
import electrosphere.renderer.ui.imgui.ImGuiWindow;
import electrosphere.renderer.ui.imgui.ImGuiWindow.ImGuiWindowCallback;
import electrosphere.server.datacell.GriddedDataCellManager;
import electrosphere.server.datacell.gridded.GriddedDataCellManager;
import electrosphere.server.terrain.generation.TestGenerationChunkGenerator;
import electrosphere.server.terrain.models.TerrainModel;
import imgui.ImGui;

View File

@ -22,7 +22,7 @@ import electrosphere.renderer.ui.elementtypes.ContainerElement.YogaAlignment;
import electrosphere.renderer.ui.elementtypes.ContainerElement.YogaJustification;
import electrosphere.renderer.ui.events.NavigationEvent;
import electrosphere.renderer.ui.events.ValueChangeEvent;
import electrosphere.server.datacell.GriddedDataCellManager;
import electrosphere.server.datacell.gridded.GriddedDataCellManager;
import electrosphere.server.saves.SaveUtils;
/**

View File

@ -1,6 +1,6 @@
package electrosphere.entity.scene;
import electrosphere.server.datacell.GriddedDataCellManager;
import electrosphere.server.datacell.gridded.GriddedDataCellManager;
import electrosphere.server.terrain.generation.TestGenerationChunkGenerator;
/**

View File

@ -10,8 +10,8 @@ import electrosphere.entity.types.creature.CreatureUtils;
import electrosphere.entity.types.item.ItemUtils;
import electrosphere.game.server.world.ServerWorldData;
import electrosphere.server.content.ServerContentManager;
import electrosphere.server.datacell.GriddedDataCellManager;
import electrosphere.server.datacell.Realm;
import electrosphere.server.datacell.gridded.GriddedDataCellManager;
import electrosphere.server.terrain.generation.DefaultChunkGenerator;
import electrosphere.server.terrain.manager.ServerTerrainChunk;
import electrosphere.util.FileUtils;

View File

@ -18,6 +18,7 @@ import electrosphere.net.server.player.Player;
import electrosphere.server.chemistry.ServerChemistryCollisionCallback;
import electrosphere.server.collision.ServerHitboxResolutionCallback;
import electrosphere.server.content.ServerContentManager;
import electrosphere.server.datacell.gridded.GriddedDataCellManager;
import electrosphere.server.fluid.simulator.FluidAcceleratedSimulator;
/**

View File

@ -1,4 +1,4 @@
package electrosphere.server.datacell;
package electrosphere.server.datacell.gridded;
import java.util.Collection;
import java.util.Collections;
@ -32,6 +32,8 @@ import electrosphere.net.server.player.Player;
import electrosphere.net.server.protocol.TerrainProtocol;
import electrosphere.server.block.manager.ServerBlockManager;
import electrosphere.server.content.ServerContentManager;
import electrosphere.server.datacell.Realm;
import electrosphere.server.datacell.ServerDataCell;
import electrosphere.server.datacell.interfaces.DataCellManager;
import electrosphere.server.datacell.interfaces.VoxelCellManager;
import electrosphere.server.datacell.physics.PhysicsDataCell;