23
23
package dev .galacticraft .impl .internal .mixin ;
24
24
25
25
import dev .galacticraft .api .accessor .ChunkOxygenAccessor ;
26
- import dev .galacticraft .impl .Constant ;
27
26
import dev .galacticraft .impl .internal .accessor .ChunkOxygenAccessorInternal ;
28
27
import dev .galacticraft .impl .internal .accessor .ChunkOxygenSyncer ;
29
28
import dev .galacticraft .impl .internal .accessor .ChunkSectionOxygenAccessorInternal ;
30
29
import dev .galacticraft .impl .internal .accessor .WorldOxygenAccessorInternal ;
31
30
import io .netty .buffer .Unpooled ;
32
- import net .fabricmc .fabric .api .networking .v1 .ServerPlayNetworking ;
33
31
import net .minecraft .core .BlockPos ;
34
32
import net .minecraft .core .Registry ;
35
33
import net .minecraft .network .FriendlyByteBuf ;
36
- import net .minecraft .network .protocol .Packet ;
37
- import net .minecraft .network .protocol .game .ClientboundCustomPayloadPacket ;
38
- import net .minecraft .resources .ResourceLocation ;
39
34
import net .minecraft .world .level .ChunkPos ;
40
35
import net .minecraft .world .level .Level ;
41
36
import net .minecraft .world .level .LevelHeightAccessor ;
61
56
import org .spongepowered .asm .mixin .injection .callback .CallbackInfoReturnable ;
62
57
import org .spongepowered .asm .mixin .injection .callback .LocalCapture ;
63
58
64
- import java .util .Collections ;
65
- import java .util .LinkedList ;
66
- import java .util .List ;
67
-
68
59
/**
69
60
* @author <a href="https://github.com/TeamGalacticraft">TeamGalacticraft</a>
70
61
*/
@@ -73,7 +64,7 @@ public abstract class WorldChunkMixin extends ChunkAccess implements ChunkOxygen
73
64
@ Shadow @ Final Level level ;
74
65
private @ Unique boolean /*@NotNull*/ [] sectionDirty ;
75
66
private @ Unique boolean defaultBreathable = false ;
76
- private @ Unique boolean dirty = false ;
67
+ private @ Unique byte dirty = 0 ;
77
68
78
69
private WorldChunkMixin (ChunkPos pos , UpgradeData upgradeData , LevelHeightAccessor heightLimitView , Registry <Biome > biome , long inhabitedTime , @ Nullable LevelChunkSection [] sectionArrayInitializer , @ Nullable BlendingData blendingData ) {
79
70
super (pos , upgradeData , heightLimitView , biome , inhabitedTime , sectionArrayInitializer , blendingData );
@@ -108,33 +99,34 @@ public void setBreathable(int x, int y, int z, boolean value) {
108
99
if (value != section .isBreathable (x & 15 , y & 15 , z & 15 )) {
109
100
if (!this .level .isClientSide ) {
110
101
this .unsaved = true ;
111
- this .dirty = true ;
112
- sectionDirty [this .getSectionIndex (y )] = true ;
102
+ if (!this .sectionDirty [this .getSectionIndex (y )]) {
103
+ this .sectionDirty [this .getSectionIndex (y )] = true ;
104
+ this .dirty ++;
105
+ }
113
106
}
114
107
section .setBreathable (x & 15 , y & 15 , z & 15 , value );
115
108
}
116
109
}
117
110
118
111
@ Override
119
- public @ NotNull List <Packet <?>> syncOxygenPacketsToClient () {
120
- if (dirty && !level .isClientSide ) {
121
- dirty = false ;
122
- List <Packet <?>> list = new LinkedList <>();
123
- for (int i = 0 ; i < sectionDirty .length ; i ++) {
124
- if (sectionDirty [i ]) {
125
- sectionDirty [i ] = false ;
126
- ChunkPos pos = this .getPos ();
127
- ChunkSectionOxygenAccessorInternal accessor = (ChunkSectionOxygenAccessorInternal ) this .getSection (i );
128
- int size = 1 + ((Integer .SIZE / Byte .SIZE ) * 2 ) + (1 + (Short .SIZE / Byte .SIZE ) + accessor .getModifiedBlocks () > 0 ? (Constant .Chunk .CHUNK_SECTION_AREA / Byte .SIZE ) : 0 );
129
- FriendlyByteBuf buf = new FriendlyByteBuf (Unpooled .buffer (size , size )
130
- .writeByte (i ).writeInt (pos .x ).writeInt (pos .z ));
131
- accessor .writeOxygenPacket (buf );
132
- list .add (ServerPlayNetworking .createS2CPacket (new ResourceLocation (Constant .MOD_ID , "oxygen_update" ), buf ));
112
+ public @ Nullable FriendlyByteBuf syncOxygenPacketsToClient () {
113
+ assert !this .level .isClientSide ;
114
+ if (this .dirty != 0 ) {
115
+ FriendlyByteBuf buf = new FriendlyByteBuf (Unpooled .buffer (8 + this .dirty * 4 ));
116
+ buf .writeInt (this .getPos ().x );
117
+ buf .writeInt (this .getPos ().z );
118
+ buf .writeByte (this .dirty );
119
+ for (int i = 0 ; i < this .sectionDirty .length ; i ++) {
120
+ if (this .sectionDirty [i ]) {
121
+ this .sectionDirty [i ] = false ;
122
+ buf .writeByte (i );
123
+ ((ChunkSectionOxygenAccessorInternal ) this .getSection (i )).writeOxygenPacket (buf );
133
124
}
134
125
}
135
- return list ;
126
+ this .dirty = 0 ;
127
+ return buf ;
136
128
}
137
- return Collections . emptyList () ;
129
+ return null ;
138
130
}
139
131
140
132
@ Override
0 commit comments