mc-beta-server/server/blocks/Block.ts

76 lines
2.4 KiB
TypeScript
Raw Normal View History

import { World } from "../World";
2023-04-08 20:52:47 +01:00
export class Block {
public readonly blockId:number;
2023-04-13 23:52:13 +01:00
public static readonly blocks:Array<Block> = new Array<Block>();
public static readonly lightPassage:Array<number> = new Array<number>();
2023-06-19 18:29:16 +01:00
public static readonly blockNames:Array<string> = new Array<string>();
2023-04-08 20:52:47 +01:00
public constructor(blockId:number) {
2023-04-13 23:52:13 +01:00
Block.blocks[blockId] = this;
Block.lightPassage[blockId] = 0;
2023-06-19 18:29:16 +01:00
Block.blockNames[blockId] = "";
2023-04-08 20:52:47 +01:00
this.blockId = blockId;
}
2023-04-13 23:52:13 +01:00
public get lightPassage() {
return Block.lightPassage[this.blockId];
}
public set lightPassage(value:number) {
Block.lightPassage[this.blockId] = value;
}
2023-06-19 18:29:16 +01:00
public get blockName() {
return Block.blockNames[this.blockId];
}
public set blockName(value:string) {
Block.blockNames[this.blockId] = value;
}
2023-05-02 08:50:49 +01:00
public setLightPassage(value:number) {
this.lightPassage = value;
return this;
}
2023-06-19 18:29:16 +01:00
public setBlockName(value:string) {
this.blockName = value;
return this;
}
public neighborBlockChange(world:World, x:number, y:number, z:number, blockId:number) {
if (blockId === Block.flowerDandelion.blockId || blockId === Block.flowerRose.blockId || blockId === Block.tallGrass.blockId) {
const block = world.getBlockId(x, y - 1, z);
if (block !== Block.grass.blockId && block !== Block.dirt.blockId) {
world.setBlockWithNotify(x, y, z, 0);
}
}
}
2023-04-11 01:53:33 +01:00
// Define statics here
2023-06-19 18:29:16 +01:00
static readonly stone = new Block(1).setBlockName("Stone");
static readonly grass = new Block(2).setBlockName("Grass");
static readonly dirt = new Block(3).setBlockName("Dirt");
2023-04-08 20:52:47 +01:00
2023-06-19 18:29:16 +01:00
static readonly bedrock = new Block(7).setBlockName("Bedrock");
2023-04-09 04:19:10 +01:00
2023-06-19 18:29:16 +01:00
static readonly waterStill = new Block(9).setLightPassage(128).setBlockName("Still Water");
2023-04-09 04:19:10 +01:00
2023-06-19 18:29:16 +01:00
static readonly lavaStill = new Block(11).setBlockName("Still Lava");
2023-04-17 02:05:11 +01:00
2023-06-19 18:29:16 +01:00
static readonly sand = new Block(12).setBlockName("Sand");
static readonly gravel = new Block(13).setBlockName("Gravel");
2023-04-09 04:19:10 +01:00
2023-06-19 18:29:16 +01:00
static readonly wood = new Block(17).setBlockName("Wood");
static readonly leaves = new Block(18).setLightPassage(240).setBlockName("Leaves");
2023-05-02 08:50:49 +01:00
2023-06-19 18:29:16 +01:00
static readonly glass = new Block(20).setLightPassage(255).setBlockName("Glass");
2023-04-11 07:47:56 +01:00
2023-06-19 18:29:16 +01:00
static readonly tallGrass = new Block(31).setLightPassage(255).setBlockName("Tall Grass");
2023-04-13 23:52:13 +01:00
2023-06-19 18:29:16 +01:00
static readonly flowerDandelion = new Block(37).setLightPassage(255).setBlockName("Dandelion");
static readonly flowerRose = new Block(38).setLightPassage(255).setBlockName("Rose");
2023-04-17 02:05:11 +01:00
2023-06-19 18:29:16 +01:00
static readonly clay = new Block(82).setBlockName("Clay");
2023-04-08 20:52:47 +01:00
}