1
1
class Hextile {
2
2
3
- constructor ( ) {
4
-
3
+ constructor ( debug = false , debugLevel = 1 ) {
4
+ this . debug = debug ;
5
+ this . debugLevel = debugLevel ;
5
6
}
6
7
7
8
getPixelBytePos ( x , y , width , height ) {
8
9
return ( ( y * width ) + x ) * 4 ;
9
10
}
10
11
11
- decode ( rect , fb , bitsPerPixel , colorMap , screenW , screenH , socket , depth ) {
12
+ decode ( rect , fb , bitsPerPixel , colorMap , screenW , screenH , socket , depth , redShift , greenShift , blueShift ) {
12
13
return new Promise ( async ( resolve , reject ) => {
13
14
14
15
const initialOffset = socket . offset ;
@@ -21,8 +22,8 @@ class Hextile {
21
22
22
23
let lastSubEncoding ;
23
24
24
- const backgroundColor = { r : 0 , g : 0 , b : 0 , a : 255 } ;
25
- const foregroundColor = { r : 0 , g : 0 , b : 0 , a : 255 } ;
25
+ let backgroundColor = 0 ;
26
+ let foregroundColor = 0 ;
26
27
27
28
tilesX = Math . ceil ( rect . width / 16 ) ;
28
29
tilesY = Math . ceil ( rect . height / 16 ) ;
@@ -61,33 +62,12 @@ class Hextile {
61
62
if ( bitsPerPixel === 8 ) {
62
63
const index = socket . readUInt8 ( ) ;
63
64
const color = colorMap [ index ] ;
64
- // RGB
65
- // fb.writeUInt8(color?.r || 255, fbBytePosOffset);
66
- // fb.writeUInt8(color?.g || 255, fbBytePosOffset + 1);
67
- // fb.writeUInt8(color?.b || 255, fbBytePosOffset + 2);
68
-
69
- // BGR
70
- fb . writeUInt8 ( color ?. r || 255 , fbBytePosOffset + 2 ) ;
71
- fb . writeUInt8 ( color ?. g || 255 , fbBytePosOffset + 1 ) ;
72
- fb . writeUInt8 ( color ?. b || 255 , fbBytePosOffset ) ;
65
+ fb . writeIntBE ( color , fbBytePosOffset , 4 ) ;
73
66
} else if ( bitsPerPixel === 24 ) {
74
- fb . writeUInt8 ( socket . readUInt8 ( ) , fbBytePosOffset ) ;
75
- fb . writeUInt8 ( socket . readUInt8 ( ) , fbBytePosOffset + 1 ) ;
76
- fb . writeUInt8 ( socket . readUInt8 ( ) , fbBytePosOffset + 2 ) ;
67
+ fb . writeIntBE ( socket . readRgbPlusAlpha ( redShift , greenShift , blueShift ) , fbBytePosOffset , 4 ) ;
77
68
} else if ( bitsPerPixel === 32 ) {
78
- // RGB
79
- // fb.writeUInt8(rect.data.readUInt8(bytePosOffset), fbBytePosOffset);
80
- // fb.writeUInt8(rect.data.readUInt8(bytePosOffset + 1), fbBytePosOffset + 1);
81
- // fb.writeUInt8(rect.data.readUInt8(bytePosOffset + 2), fbBytePosOffset + 2);
82
-
83
- // BGR
84
- fb . writeUInt8 ( socket . readUInt8 ( ) , fbBytePosOffset + 2 ) ;
85
- fb . writeUInt8 ( socket . readUInt8 ( ) , fbBytePosOffset + 1 ) ;
86
- fb . writeUInt8 ( socket . readUInt8 ( ) , fbBytePosOffset ) ;
87
- socket . readUInt8 ( ) ;
69
+ fb . writeIntBE ( socket . readRgba ( redShift , greenShift , blueShift ) , fbBytePosOffset , 4 ) ;
88
70
}
89
- // Alpha, always 255
90
- fb . writeUInt8 ( 255 , fbBytePosOffset + 3 ) ;
91
71
}
92
72
}
93
73
lastSubEncoding = subEncoding ;
@@ -99,26 +79,19 @@ class Hextile {
99
79
await socket . waitBytes ( 1 ) ;
100
80
const index = socket . readUInt8 ( ) ;
101
81
dataSize ++ ;
102
- backgroundColor . r = colorMap [ index ] . r || 255 ;
103
- backgroundColor . g = colorMap [ index ] . g || 255 ;
104
- backgroundColor . b = colorMap [ index ] . b || 255 ;
82
+ backgroundColor = colorMap [ index ] ;
105
83
break ;
106
84
107
85
case 24 :
108
86
await socket . waitBytes ( 3 ) ;
109
87
dataSize += 3 ;
110
- backgroundColor . r = socket . readUInt8 ( ) ;
111
- backgroundColor . g = socket . readUInt8 ( ) ;
112
- backgroundColor . b = socket . readUInt8 ( ) ;
88
+ backgroundColor = socket . readRgbPlusAlpha ( redShift , greenShift , blueShift ) ;
113
89
break ;
114
90
115
91
case 32 :
116
92
await socket . waitBytes ( 4 ) ;
117
93
dataSize += 4 ;
118
- backgroundColor . r = socket . readUInt8 ( ) ;
119
- backgroundColor . g = socket . readUInt8 ( ) ;
120
- backgroundColor . b = socket . readUInt8 ( ) ;
121
- backgroundColor . a = socket . readUInt8 ( ) ;
94
+ backgroundColor = socket . readRgba ( redShift , greenShift , blueShift ) ;
122
95
break ;
123
96
124
97
}
@@ -131,26 +104,19 @@ class Hextile {
131
104
await socket . waitBytes ( 1 ) ;
132
105
const index = socket . readUInt8 ( ) ;
133
106
dataSize ++ ;
134
- foregroundColor . r = colorMap [ index ] . r || 255 ;
135
- foregroundColor . g = colorMap [ index ] . g || 255 ;
136
- foregroundColor . b = colorMap [ index ] . b || 255 ;
107
+ foregroundColor = colorMap [ index ] ;
137
108
break ;
138
109
139
110
case 24 :
140
111
await socket . waitBytes ( 3 ) ;
141
112
dataSize += 3 ;
142
- foregroundColor . r = socket . readUInt8 ( ) ;
143
- foregroundColor . g = socket . readUInt8 ( ) ;
144
- foregroundColor . b = socket . readUInt8 ( ) ;
113
+ foregroundColor = socket . readRgbPlusAlpha ( redShift , greenShift , blueShift ) ;
145
114
break ;
146
115
147
116
case 32 :
148
117
await socket . waitBytes ( 4 ) ;
149
118
dataSize += 4 ;
150
- foregroundColor . r = socket . readUInt8 ( ) ;
151
- foregroundColor . g = socket . readUInt8 ( ) ;
152
- foregroundColor . b = socket . readUInt8 ( ) ;
153
- foregroundColor . a = socket . readUInt8 ( ) ;
119
+ foregroundColor = socket . readRgba ( redShift , greenShift , blueShift ) ;
154
120
break ;
155
121
156
122
}
@@ -170,7 +136,7 @@ class Hextile {
170
136
while ( subRects ) {
171
137
172
138
subRects -- ;
173
- const color = { r : 0 , g : 0 , b : 0 , a : 255 } ;
139
+ let color = 0 ;
174
140
175
141
// SubrectsColoured
176
142
if ( subEncoding & 0x10 ) {
@@ -181,34 +147,24 @@ class Hextile {
181
147
await socket . waitBytes ( 1 ) ;
182
148
const index = socket . readUInt8 ( ) ;
183
149
dataSize ++ ;
184
- color . r = colorMap [ index ] . r || 255 ;
185
- color . g = colorMap [ index ] . g || 255 ;
186
- color . b = colorMap [ index ] . b || 255 ;
150
+ color = colorMap [ index ] ;
187
151
break ;
188
152
189
153
case 24 :
190
154
await socket . waitBytes ( 3 ) ;
191
155
dataSize += 3 ;
192
- color . r = socket . readUInt8 ( ) ;
193
- color . g = socket . readUInt8 ( ) ;
194
- color . b = socket . readUInt8 ( ) ;
156
+ color = socket . readRgbPlusAlpha ( redShift , greenShift , blueShift ) ;
195
157
break ;
196
158
197
159
case 32 :
198
160
await socket . waitBytes ( 4 ) ;
199
161
dataSize += 4 ;
200
- color . r = socket . readUInt8 ( ) ;
201
- color . g = socket . readUInt8 ( ) ;
202
- color . b = socket . readUInt8 ( ) ;
203
- color . a = socket . readUInt8 ( ) ;
162
+ color = socket . readRgba ( redShift , greenShift , blueShift ) ;
204
163
break ;
205
164
}
206
165
207
166
} else {
208
- color . r = foregroundColor . r ;
209
- color . g = foregroundColor . g ;
210
- color . b = foregroundColor . b ;
211
- color . a = foregroundColor . a ;
167
+ color = foregroundColor ;
212
168
}
213
169
214
170
await socket . waitBytes ( 2 ) ;
@@ -251,10 +207,7 @@ class Hextile {
251
207
for ( let h = 0 ; h < th ; h ++ ) {
252
208
for ( let w = 0 ; w < tw ; w ++ ) {
253
209
const fbBytePosOffset = this . getPixelBytePos ( tx + w , ty + h , screenW , screenH ) ;
254
- fb . writeUInt8 ( color . r || 255 , fbBytePosOffset + 2 ) ;
255
- fb . writeUInt8 ( color . g || 255 , fbBytePosOffset + 1 ) ;
256
- fb . writeUInt8 ( color . b || 255 , fbBytePosOffset ) ;
257
- fb . writeUInt8 ( 255 , fbBytePosOffset + 3 ) ;
210
+ fb . writeIntBE ( color , fbBytePosOffset , 4 ) ;
258
211
}
259
212
}
260
213
}
0 commit comments