1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2024-10-27 20:34:29 +00:00
tobspr_shapez.io/src/js/game/systems/belt.js

478 lines
16 KiB
JavaScript
Raw Normal View History

2020-06-26 11:57:07 +00:00
import { Math_sqrt } from "../../core/builtins";
2020-05-09 14:45:23 +00:00
import { globalConfig } from "../../core/config";
import { DrawParameters } from "../../core/draw_parameters";
import { Loader } from "../../core/loader";
2020-06-25 10:18:48 +00:00
import { createLogger } from "../../core/logging";
2020-05-09 14:45:23 +00:00
import { AtlasSprite } from "../../core/sprites";
2020-06-26 11:57:07 +00:00
import { enumDirection, enumDirectionToVector, enumInvertedDirections } from "../../core/vector";
import { BeltPath } from "../belt_path";
2020-05-09 14:45:23 +00:00
import { BeltComponent } from "../components/belt";
import { Entity } from "../entity";
import { GameSystemWithFilter } from "../game_system_with_filter";
import { MapChunkView } from "../map_chunk_view";
2020-06-26 11:57:07 +00:00
import { fastArrayDeleteValue } from "../../core/utils";
2020-05-09 14:45:23 +00:00
2020-06-25 10:18:48 +00:00
export const BELT_ANIM_COUNT = 28;
2020-05-09 14:45:23 +00:00
const logger = createLogger("belt");
2020-05-09 14:45:23 +00:00
export class BeltSystem extends GameSystemWithFilter {
constructor(root) {
super(root, [BeltComponent]);
/**
* @type {Object.<enumDirection, Array<AtlasSprite>>}
*/
this.beltSprites = {
[enumDirection.top]: Loader.getSprite("sprites/belt/forward_0.png"),
[enumDirection.left]: Loader.getSprite("sprites/belt/left_0.png"),
[enumDirection.right]: Loader.getSprite("sprites/belt/right_0.png"),
};
2020-06-25 10:18:48 +00:00
/**
2020-05-09 14:45:23 +00:00
* @type {Object.<enumDirection, Array<AtlasSprite>>}
*/
this.beltAnimations = {
2020-06-25 10:18:48 +00:00
[enumDirection.top]: [],
[enumDirection.left]: [],
[enumDirection.right]: [],
2020-05-09 14:45:23 +00:00
};
2020-05-10 15:00:02 +00:00
2020-06-25 10:18:48 +00:00
for (let i = 0; i < BELT_ANIM_COUNT; ++i) {
this.beltAnimations[enumDirection.top].push(
Loader.getSprite("sprites/belt/forward_" + i + ".png")
);
this.beltAnimations[enumDirection.left].push(Loader.getSprite("sprites/belt/left_" + i + ".png"));
this.beltAnimations[enumDirection.right].push(
Loader.getSprite("sprites/belt/right_" + i + ".png")
);
}
2020-05-10 15:00:02 +00:00
this.root.signals.entityAdded.add(this.updateSurroundingBeltPlacement, this);
this.root.signals.entityDestroyed.add(this.updateSurroundingBeltPlacement, this);
2020-06-26 11:57:07 +00:00
this.root.signals.entityDestroyed.add(this.onEntityDestroyed, this);
this.root.signals.entityAdded.add(this.onEntityAdded, this);
2020-06-26 11:57:07 +00:00
// /** @type {Rectangle} */
// this.areaToRecompute = null;
/** @type {Array<BeltPath>} */
this.beltPaths = [];
}
2020-06-26 11:57:07 +00:00
/**
* Serializes all belt paths
*/
serializePaths() {
let data = [];
for (let i = 0; i < this.beltPaths.length; ++i) {
data.push(this.beltPaths[i].serialize());
}
return data;
}
/**
* Deserializes all belt paths
* @param {Array<any>} data
*/
deserializePaths(data) {
if (!Array.isArray(data)) {
return "Belt paths are not an array: " + typeof data;
}
for (let i = 0; i < data.length; ++i) {
const path = BeltPath.fromSerialized(this.root, data[i]);
if (!(path instanceof BeltPath)) {
return "Failed to create path from belt data: " + path;
}
this.beltPaths.push(path);
}
if (this.beltPaths.length === 0) {
logger.warn("Recomputing belt paths (most likely the savegame is old)");
this.recomputeAllBeltPaths();
} else {
logger.warn("Restored", this.beltPaths.length, "belt paths");
}
this.verifyBeltPaths();
2020-05-10 15:00:02 +00:00
}
/**
* Updates the belt placement after an entity has been added / deleted
* @param {Entity} entity
*/
updateSurroundingBeltPlacement(entity) {
if (!this.root.gameInitialized) {
return;
}
2020-05-10 15:00:02 +00:00
const staticComp = entity.components.StaticMapEntity;
if (!staticComp) {
return;
}
2020-06-26 11:57:07 +00:00
/*
2020-05-10 15:00:02 +00:00
const metaBelt = gMetaBuildingRegistry.findByClass(MetaBeltBaseBuilding);
// Compute affected area
const originalRect = staticComp.getTileSpaceBounds();
const affectedArea = originalRect.expandedInAllDirections(1);
// Store if anything got changed, if so we need to queue a recompute
let anythingChanged = false;
2020-06-26 11:57:07 +00:00
anythingChanged = true; // TODO / FIXME
2020-05-10 15:00:02 +00:00
for (let x = affectedArea.x; x < affectedArea.right(); ++x) {
for (let y = affectedArea.y; y < affectedArea.bottom(); ++y) {
if (!originalRect.containsPoint(x, y)) {
const targetEntity = this.root.map.getTileContentXY(x, y);
if (targetEntity) {
const targetBeltComp = targetEntity.components.Belt;
if (targetBeltComp) {
const targetStaticComp = targetEntity.components.StaticMapEntity;
const {
rotation,
rotationVariant,
} = metaBelt.computeOptimalDirectionAndRotationVariantAtTile(
this.root,
new Vector(x, y),
2020-05-16 21:48:56 +00:00
targetStaticComp.originalRotation,
defaultBuildingVariant
2020-05-10 15:00:02 +00:00
);
targetStaticComp.rotation = rotation;
2020-05-16 21:48:56 +00:00
metaBelt.updateVariants(targetEntity, rotationVariant, defaultBuildingVariant);
anythingChanged = true;
2020-05-10 15:00:02 +00:00
}
}
}
}
}
if (anythingChanged) {
if (this.areaToRecompute) {
this.areaToRecompute = this.areaToRecompute.getUnion(affectedArea);
} else {
this.areaToRecompute = affectedArea.clone();
}
2020-06-25 10:42:48 +00:00
if (G_IS_DEV) {
logger.log("Queuing recompute:", this.areaToRecompute);
}
}
2020-06-26 11:57:07 +00:00
// FIXME
this.areaToRecompute = new Rectangle(-1000, -1000, 2000, 2000);
*/
}
/**
* Called when an entity got destroyed
* @param {Entity} entity
*/
onEntityDestroyed(entity) {
if (!this.root.gameInitialized) {
return;
}
if (!entity.components.Belt) {
return;
}
const assignedPath = entity.components.Belt.assignedPath;
assert(assignedPath, "Entity has no belt path assigned");
this.deleteEntityFromPath(assignedPath, entity);
this.verifyBeltPaths();
}
2020-06-26 11:57:07 +00:00
/**
* Attempts to delete the belt from its current path
* @param {BeltPath} path
* @param {Entity} entity
*/
deleteEntityFromPath(path, entity) {
if (path.entityPath.length === 1) {
// This is a single entity path, easy to do, simply erase whole path
fastArrayDeleteValue(this.beltPaths, path);
return;
}
2020-06-26 11:57:07 +00:00
// Notice: Since there might be circular references, it is important to check
// which role the entity has
if (path.isStartEntity(entity)) {
// We tried to delete the start
path.deleteEntityOnStart(entity);
} else if (path.isEndEntity(entity)) {
// We tried to delete the end
path.deleteEntityOnEnd(entity);
2020-06-26 11:57:07 +00:00
} else {
// We tried to delete something inbetween
const newPath = path.deleteEntityOnPathSplitIntoTwo(entity);
this.beltPaths.push(newPath);
2020-06-26 11:57:07 +00:00
}
}
/**
* Called when an entity got added
* @param {Entity} entity
*/
onEntityAdded(entity) {
if (!this.root.gameInitialized) {
return;
}
if (!entity.components.Belt) {
return;
}
const fromEntity = this.findSupplyingEntity(entity);
const toEntity = this.findFollowUpEntity(entity);
// Check if we can add the entity to the previous path
if (fromEntity) {
const fromPath = fromEntity.components.Belt.assignedPath;
fromPath.extendOnEnd(entity);
// Check if we now can extend the current path by the next path
if (toEntity) {
const toPath = toEntity.components.Belt.assignedPath;
2020-06-26 14:31:36 +00:00
if (fromPath === toPath) {
// This is a circular dependency -> Ignore
} else {
fromPath.extendByPath(toPath);
// Delete now obsolete path
fastArrayDeleteValue(this.beltPaths, toPath);
}
2020-06-26 11:57:07 +00:00
}
} else {
if (toEntity) {
// Prepend it to the other path
const toPath = toEntity.components.Belt.assignedPath;
toPath.extendOnBeginning(entity);
} else {
// This is an empty belt path
const path = new BeltPath(this.root, [entity]);
this.beltPaths.push(path);
}
}
2020-06-26 14:31:36 +00:00
this.verifyBeltPaths();
2020-05-09 14:45:23 +00:00
}
draw(parameters) {
2020-06-26 15:28:19 +00:00
for (let i = 0; i < this.beltPaths.length; ++i) {
this.beltPaths[i].draw(parameters);
}
2020-05-09 14:45:23 +00:00
}
2020-06-26 14:31:36 +00:00
/**
* Verifies all belt paths
*/
verifyBeltPaths() {
if (G_IS_DEV && true) {
2020-06-26 14:31:36 +00:00
for (let i = 0; i < this.beltPaths.length; ++i) {
this.beltPaths[i].debug_checkIntegrity("general-verify");
}
const belts = this.root.entityMgr.getAllWithComponent(BeltComponent);
for (let i = 0; i < belts.length; ++i) {
const path = belts[i].components.Belt.assignedPath;
if (!path) {
throw new Error("Belt has no path: " + belts[i].uid);
}
if (this.beltPaths.indexOf(path) < 0) {
throw new Error("Path of entity not contained: " + belts[i].uid);
}
}
}
}
2020-05-18 10:53:01 +00:00
/**
* Finds the follow up entity for a given belt. Used for building the dependencies
2020-05-18 10:53:01 +00:00
* @param {Entity} entity
*/
findFollowUpEntity(entity) {
const staticComp = entity.components.StaticMapEntity;
const beltComp = entity.components.Belt;
2020-05-18 10:53:01 +00:00
const followUpDirection = staticComp.localDirectionToWorld(beltComp.direction);
const followUpVector = enumDirectionToVector[followUpDirection];
2020-05-18 10:53:01 +00:00
const followUpTile = staticComp.origin.add(followUpVector);
const followUpEntity = this.root.map.getTileContent(followUpTile);
2020-05-09 14:45:23 +00:00
2020-05-18 17:23:37 +00:00
// Check if theres a belt at the tile we point to
if (followUpEntity) {
const followUpBeltComp = followUpEntity.components.Belt;
if (followUpBeltComp) {
2020-05-18 17:23:37 +00:00
const followUpStatic = followUpEntity.components.StaticMapEntity;
const followUpAcceptor = followUpEntity.components.ItemAcceptor;
// Check if the belt accepts items from our direction
const acceptorSlots = followUpAcceptor.slots;
for (let i = 0; i < acceptorSlots.length; ++i) {
const slot = acceptorSlots[i];
for (let k = 0; k < slot.directions.length; ++k) {
const localDirection = followUpStatic.localDirectionToWorld(slot.directions[k]);
if (enumInvertedDirections[localDirection] === followUpDirection) {
return followUpEntity;
}
}
}
}
2020-05-18 10:53:01 +00:00
}
2020-05-09 14:45:23 +00:00
return null;
}
2020-06-26 11:57:07 +00:00
/**
* Finds the supplying belt for a given belt. Used for building the dependencies
* @param {Entity} entity
*/
findSupplyingEntity(entity) {
const staticComp = entity.components.StaticMapEntity;
const supplyDirection = staticComp.localDirectionToWorld(enumDirection.bottom);
const supplyVector = enumDirectionToVector[supplyDirection];
const supplyTile = staticComp.origin.add(supplyVector);
const supplyEntity = this.root.map.getTileContent(supplyTile);
// Check if theres a belt at the tile we point to
if (supplyEntity) {
const supplyBeltComp = supplyEntity.components.Belt;
if (supplyBeltComp) {
const supplyStatic = supplyEntity.components.StaticMapEntity;
const supplyEjector = supplyEntity.components.ItemEjector;
// Check if the belt accepts items from our direction
const ejectorSlots = supplyEjector.slots;
for (let i = 0; i < ejectorSlots.length; ++i) {
const slot = ejectorSlots[i];
const localDirection = supplyStatic.localDirectionToWorld(slot.direction);
if (enumInvertedDirections[localDirection] === supplyDirection) {
return supplyEntity;
}
}
}
}
return null;
}
/**
* Computes the belt path network
*/
recomputeAllBeltPaths() {
logger.warn("Recomputing all belt paths");
2020-06-26 11:57:07 +00:00
const visitedUids = new Set();
const result = [];
for (let i = 0; i < this.allEntities.length; ++i) {
const entity = this.allEntities[i];
if (visitedUids.has(entity.uid)) {
continue;
}
// Mark entity as visited
visitedUids.add(entity.uid);
// Compute path, start with entity and find precedors / successors
const path = [entity];
2020-06-26 14:31:36 +00:00
let maxIter = 9999;
2020-06-26 11:57:07 +00:00
// Find precedors
let prevEntity = this.findSupplyingEntity(entity);
2020-06-26 14:31:36 +00:00
while (prevEntity && --maxIter > 0) {
if (visitedUids.has(prevEntity.uid)) {
2020-06-26 11:57:07 +00:00
break;
}
path.unshift(prevEntity);
visitedUids.add(prevEntity.uid);
prevEntity = this.findSupplyingEntity(prevEntity);
}
// Find succedors
let nextEntity = this.findFollowUpEntity(entity);
2020-06-26 14:31:36 +00:00
while (nextEntity && --maxIter > 0) {
if (visitedUids.has(nextEntity.uid)) {
2020-06-26 11:57:07 +00:00
break;
}
path.push(nextEntity);
visitedUids.add(nextEntity.uid);
nextEntity = this.findFollowUpEntity(nextEntity);
}
assert(maxIter > 1, "Ran out of iterations");
2020-06-26 11:57:07 +00:00
result.push(new BeltPath(this.root, path));
}
logger.log("Found", this.beltPaths.length, "belt paths");
this.beltPaths = result;
2020-05-09 14:45:23 +00:00
}
2020-05-18 10:53:01 +00:00
update() {
2020-06-26 14:31:36 +00:00
this.verifyBeltPaths();
2020-06-26 11:57:07 +00:00
for (let i = 0; i < this.beltPaths.length; ++i) {
this.beltPaths[i].update();
}
2020-06-26 14:31:36 +00:00
this.verifyBeltPaths();
2020-05-18 10:53:01 +00:00
}
2020-05-09 14:45:23 +00:00
/**
*
* @param {DrawParameters} parameters
* @param {MapChunkView} chunk
*/
drawChunk(parameters, chunk) {
if (parameters.zoomLevel < globalConfig.mapChunkOverviewMinZoom) {
return;
}
const speedMultiplier = this.root.hubGoals.getBeltBaseSpeed();
2020-05-18 09:47:17 +00:00
// SYNC with systems/item_acceptor.js:drawEntityUnderlays!
2020-05-09 14:45:23 +00:00
// 126 / 42 is the exact animation speed of the png animation
const animationIndex = Math.floor(
2020-05-18 09:47:17 +00:00
((this.root.time.now() * speedMultiplier * BELT_ANIM_COUNT * 126) / 42) *
globalConfig.itemSpacingOnBelts
2020-05-09 14:45:23 +00:00
);
const contents = chunk.contents;
for (let y = 0; y < globalConfig.mapChunkSize; ++y) {
for (let x = 0; x < globalConfig.mapChunkSize; ++x) {
const entity = contents[x][y];
if (entity && entity.components.Belt) {
const direction = entity.components.Belt.direction;
const sprite = this.beltAnimations[direction][animationIndex % BELT_ANIM_COUNT];
entity.components.StaticMapEntity.drawSpriteOnFullEntityBounds(
parameters,
sprite,
0,
false
);
}
}
}
1;
}
2020-06-26 11:57:07 +00:00
/**
* Draws the belt parameters
* @param {DrawParameters} parameters
*/
drawBeltPathDebug(parameters) {
for (let i = 0; i < this.beltPaths.length; ++i) {
this.beltPaths[i].drawDebug(parameters);
}
2020-05-09 14:45:23 +00:00
}
}