9
0
mirror of https://github.com/VolmitSoftware/Iris.git synced 2025-12-27 19:19:07 +00:00

Updates on their own slice

This commit is contained in:
cyberpwn
2021-08-27 10:24:01 -04:00
parent cf3d92d6e1
commit a09829ed4b
2 changed files with 60 additions and 2 deletions

View File

@@ -0,0 +1,57 @@
/*
* Iris is a World Generator for Minecraft Bukkit Servers
* Copyright (c) 2021 Arcane Arts (Volmit Software)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package com.volmit.iris.util.matter.slices;
import com.volmit.iris.util.matter.Sliced;
import lombok.AllArgsConstructor;
import lombok.Data;
import java.io.DataInputStream;
import java.io.DataOutputStream;
import java.io.IOException;
@Sliced
public class UpdateMatter extends RawMatter<UpdateMatter.MatterUpdate> {
public static final MatterUpdate ON = new MatterUpdate(true);
public static final MatterUpdate OFF = new MatterUpdate(false);
public UpdateMatter() {
this(1, 1, 1);
}
public UpdateMatter(int width, int height, int depth) {
super(width, height, depth, MatterUpdate.class);
}
@Override
public void writeNode(MatterUpdate b, DataOutputStream dos) throws IOException {
dos.writeBoolean(b.update);
}
@Override
public MatterUpdate readNode(DataInputStream din) throws IOException {
return din.readBoolean() ? ON : OFF;
}
@Data
@AllArgsConstructor
public static class MatterUpdate {
private final boolean update;
}
}