moving data packages around
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
Some checks failed
studiorailgun/Renderer/pipeline/head There was a failure building this commit
This commit is contained in:
parent
8e7694c598
commit
a7bb4300ae
@ -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
|
||||
|
||||
|
||||
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.macro;
|
||||
package electrosphere.data.macro.job;
|
||||
|
||||
/**
|
||||
* A job that a character can have
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.struct;
|
||||
package electrosphere.data.macro.struct;
|
||||
|
||||
import org.joml.Vector3d;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.struct;
|
||||
package electrosphere.data.macro.struct;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.struct;
|
||||
package electrosphere.data.macro.struct;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.Collection;
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.units;
|
||||
package electrosphere.data.macro.units;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.units;
|
||||
package electrosphere.data.macro.units;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.units;
|
||||
package electrosphere.data.macro.units;
|
||||
|
||||
/**
|
||||
* An item equipped to a unit
|
||||
@ -1,4 +1,4 @@
|
||||
package electrosphere.data.units;
|
||||
package electrosphere.data.macro.units;
|
||||
|
||||
import java.util.Collection;
|
||||
import java.util.HashMap;
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
@ -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;
|
||||
|
||||
/**
|
||||
|
||||
@ -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;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user