moving data packages around
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit

This commit is contained in:
austin 2025-05-28 16:01:25 -04:00
parent 8e7694c598
commit a7bb4300ae
17 changed files with 21 additions and 20 deletions

View File

@ -2025,6 +2025,7 @@ Fix server collision resolution never triggering for second body
Fix macro structure rotation generation
Improvement to building placement math in TownLayout
Scaffold character job data
Moving data packages around

View File

@ -11,7 +11,7 @@ import electrosphere.data.entity.common.CommonEntityType;
import electrosphere.data.entity.creature.CreatureData;
import electrosphere.data.entity.foliage.FoliageType;
import electrosphere.data.entity.item.Item;
import electrosphere.data.units.UnitDefinition;
import electrosphere.data.macro.units.UnitDefinition;
import electrosphere.engine.Globals;
import electrosphere.engine.signal.Signal.SignalType;
import electrosphere.entity.Entity;

View File

@ -20,11 +20,11 @@ import electrosphere.data.entity.foliage.FoliageTypeMap;
import electrosphere.data.entity.item.ItemDataMap;
import electrosphere.data.entity.item.source.ItemSourcingMap;
import electrosphere.data.entity.projectile.ProjectileTypeHolder;
import electrosphere.data.macro.struct.StructureDataLoader;
import electrosphere.data.macro.units.UnitDefinitionFile;
import electrosphere.data.macro.units.UnitLoader;
import electrosphere.data.settings.UserSettings;
import electrosphere.data.struct.StructureDataLoader;
import electrosphere.data.tutorial.HintDefinition;
import electrosphere.data.units.UnitDefinitionFile;
import electrosphere.data.units.UnitLoader;
import electrosphere.data.voxel.VoxelData;
import electrosphere.data.voxel.sampler.SamplerFile;
import electrosphere.logger.LoggerInterface;

View File

@ -1,4 +1,4 @@
package electrosphere.data.macro;
package electrosphere.data.macro.job;
/**
* A job that a character can have

View File

@ -1,4 +1,4 @@
package electrosphere.data.struct;
package electrosphere.data.macro.struct;
import org.joml.Vector3d;

View File

@ -1,4 +1,4 @@
package electrosphere.data.struct;
package electrosphere.data.macro.struct;
import java.util.List;

View File

@ -1,4 +1,4 @@
package electrosphere.data.struct;
package electrosphere.data.macro.struct;
import java.io.File;
import java.util.Collection;

View File

@ -1,4 +1,4 @@
package electrosphere.data.units;
package electrosphere.data.macro.units;
import java.util.List;

View File

@ -1,4 +1,4 @@
package electrosphere.data.units;
package electrosphere.data.macro.units;
import java.util.List;

View File

@ -1,4 +1,4 @@
package electrosphere.data.units;
package electrosphere.data.macro.units;
/**
* An item equipped to a unit

View File

@ -1,4 +1,4 @@
package electrosphere.data.units;
package electrosphere.data.macro.units;
import java.util.Collection;
import java.util.HashMap;

View File

@ -3,7 +3,7 @@ package electrosphere.server.ai.nodes.checks.spatial;
import org.joml.Vector3d;
import electrosphere.data.block.fab.BlockFab;
import electrosphere.data.struct.StructureData;
import electrosphere.data.macro.struct.StructureData;
import electrosphere.engine.Globals;
import electrosphere.entity.Entity;
import electrosphere.entity.EntityUtils;

View File

@ -2,9 +2,9 @@ package electrosphere.server.entity.unit;
import org.joml.Vector3d;
import electrosphere.data.units.UnitDefinition;
import electrosphere.data.units.UnitEquippedItem;
import electrosphere.data.units.UnitLoader;
import electrosphere.data.macro.units.UnitDefinition;
import electrosphere.data.macro.units.UnitEquippedItem;
import electrosphere.data.macro.units.UnitLoader;
import electrosphere.engine.Globals;
import electrosphere.entity.Entity;
import electrosphere.entity.state.inventory.ServerInventoryState;

View File

@ -6,7 +6,7 @@ import org.joml.Vector3d;
import electrosphere.controls.cursor.CursorState;
import electrosphere.data.block.fab.BlockFab;
import electrosphere.data.struct.StructureData;
import electrosphere.data.macro.struct.StructureData;
import electrosphere.server.datacell.ServerWorldData;
import electrosphere.server.macro.MacroData;
import electrosphere.server.macro.spatial.MacroAreaObject;

View File

@ -10,7 +10,7 @@ import org.joml.Vector3d;
import org.joml.Vector3i;
import electrosphere.controls.cursor.CursorState;
import electrosphere.data.struct.StructureData;
import electrosphere.data.macro.struct.StructureData;
import electrosphere.engine.Globals;
import electrosphere.logger.LoggerInterface;
import electrosphere.server.datacell.Realm;

View File

@ -2,7 +2,7 @@ package electrosphere.server.macro.utils;
import org.joml.Vector3d;
import electrosphere.data.struct.StructureData;
import electrosphere.data.macro.struct.StructureData;
import electrosphere.server.macro.MacroData;
/**

View File

@ -3,7 +3,7 @@ package electrosphere.server.simulation.chara;
import org.joml.Vector3d;
import electrosphere.data.block.fab.BlockFab;
import electrosphere.data.struct.StructureData;
import electrosphere.data.macro.struct.StructureData;
import electrosphere.engine.Globals;
import electrosphere.server.datacell.Realm;
import electrosphere.server.macro.MacroData;