1
1
package after .io ;
2
2
3
+ import after .annotations .CacheFileID ;
3
4
import after .annotations .ClassID ;
4
5
import after .annotations .ListOfProcID ;
5
6
import after .annotations .MobTypeID ;
9
10
import after .io .framework .DMBWriteContext ;
10
11
import static after .io .DMBObjectEntryBasedSubblock .OBJ_NULL ;
11
12
13
+ import aedium .ElementMarkers ;
14
+
12
15
public class DMBStandardObjectIDs {
13
16
@ MobTypeID // Nullable
14
17
public int mob = OBJ_NULL ;
@@ -21,7 +24,8 @@ public class DMBStandardObjectIDs {
21
24
public int procs = OBJ_NULL ;
22
25
@ ProcID // Nullable
23
26
public int globalVariableInitializer = OBJ_NULL ;
24
- public int idBAC = OBJ_NULL ;
27
+ @ StringID // Nullable
28
+ public int domain = OBJ_NULL ;
25
29
@ StringID
26
30
public int name = OBJ_NULL ;
27
31
// GEN < 368 (yes, under)
@@ -34,17 +38,19 @@ public class DMBStandardObjectIDs {
34
38
@ ClassID
35
39
public int image = OBJ_NULL ;
36
40
// --
37
- public byte unkB ;
38
- public byte unkC = 1 ;
41
+ public byte clientLazyEye ;
42
+ public byte clientDir = 1 ;
39
43
// GEN >= 415
40
- public short unkD ;
44
+ public short clientControlFreak ;
41
45
// --
42
46
public byte unkE ;
43
47
// GEN >= 230
44
- public int idC = OBJ_NULL ;
48
+ @ StringID // Nullable
49
+ public int clientScript = OBJ_NULL ;
45
50
// --
46
51
// GEN >= 507
47
- public int [] idEvenMore = new int [0 ];
52
+ @ ElementMarkers (CacheFileID .class )
53
+ public int [] clientScriptFiles = new int [0 ];
48
54
// GEN < 507 (yes, under)
49
55
public int idX = OBJ_NULL ;
50
56
// GEN >= 232
@@ -59,48 +65,53 @@ public class DMBStandardObjectIDs {
59
65
// GEN >= 266
60
66
@ StringID // Nullable
61
67
public int serverName = OBJ_NULL ;
62
- public int [] unkBG = new int [2 ];
68
+ public int hubNumber ;
69
+ public int gameVersion ;
63
70
// GEN >= 272
64
- public short unkG = 30 ;
65
- public int [] idAY = new int [] {OBJ_NULL , OBJ_NULL };
71
+ public short cacheLifespan = 30 ;
72
+ @ StringID // Nullable
73
+ public int clientCommandText ;
74
+ @ StringID // Nullable
75
+ public int clientCommandPrompt ;
66
76
// GEN >= 276
67
77
@ StringID // Nullable
68
78
public int hub = OBJ_NULL ;
69
79
// GEN >= 305
70
80
@ StringID // Nullable (?) but really should be "default"
71
81
public int channel = OBJ_NULL ;
72
82
// GEN >= 360
73
- public int idAZB = OBJ_NULL ;
83
+ @ CacheFileID // Nullable
84
+ public int skin = OBJ_NULL ;
74
85
75
86
// LHS >= 455
76
87
public short iconSizeX = 32 ;
77
88
public short iconSizeY = 32 ;
78
- public short unkZ = (short ) 32768 ;
89
+ public short mapFormat = (short ) 32768 ;
79
90
80
91
public void read (DMBReadContext rc ) {
81
92
mob = rc .id ();
82
93
turf = rc .id ();
83
94
area = rc .id ();
84
95
procs = rc .id ();
85
96
globalVariableInitializer = rc .id ();
86
- idBAC = rc .id ();
97
+ domain = rc .id ();
87
98
name = rc .id ();
88
99
if (rc .vGEN < 368 )
89
100
idOld1 = rc .id ();
90
101
tickTimeMillis = rc .io .getInt ();
91
102
client = rc .id ();
92
103
if (rc .vGEN >= 308 )
93
104
image = rc .id ();
94
- unkB = rc .io .get ();
95
- unkC = rc .io .get ();
105
+ clientLazyEye = rc .io .get ();
106
+ clientDir = rc .io .get ();
96
107
if (rc .vGEN >= 415 )
97
- unkD = rc .io .getShort ();
108
+ clientControlFreak = rc .io .getShort ();
98
109
unkE = rc .io .get ();
99
110
if (rc .vGEN >= 230 )
100
- idC = rc .id ();
111
+ clientScript = rc .id ();
101
112
if (rc .vGEN >= 507 ) {
102
- idEvenMore = new int [rc .io .getShort () & 0xFFFF ];
103
- rc .ids (idEvenMore );
113
+ clientScriptFiles = new int [rc .io .getShort () & 0xFFFF ];
114
+ rc .ids (clientScriptFiles );
104
115
}
105
116
if (rc .vGEN < 507 ) {
106
117
idX = rc .id ();
@@ -115,27 +126,29 @@ public void read(DMBReadContext rc) {
115
126
hubPasswordHashed = rc .id ();
116
127
if (rc .vGEN >= 266 ) {
117
128
serverName = rc .id ();
118
- rc .ints (unkBG );
129
+ hubNumber = rc .io .getInt ();
130
+ gameVersion = rc .io .getInt ();
119
131
}
120
132
if (rc .vGEN >= 272 ) {
121
- unkG = rc .io .getShort ();
122
- rc .ids (idAY );
133
+ cacheLifespan = rc .io .getShort ();
134
+ clientCommandText = rc .id ();
135
+ clientCommandPrompt = rc .id ();
123
136
}
124
137
if (rc .vGEN >= 276 )
125
138
hub = rc .id ();
126
139
if (rc .vGEN >= 305 )
127
140
channel = rc .id ();
128
141
if (rc .vGEN >= 360 )
129
- idAZB = rc .id ();
142
+ skin = rc .id ();
130
143
131
144
if (rc .vLHS >= 455 ) {
132
145
iconSizeX = rc .io .getShort ();
133
146
iconSizeY = rc .io .getShort ();
134
- unkZ = rc .io .getShort ();
147
+ mapFormat = rc .io .getShort ();
135
148
} else {
136
149
iconSizeX = 32 ;
137
150
iconSizeY = 32 ;
138
- unkZ = (short ) 32768 ;
151
+ mapFormat = (short ) 32768 ;
139
152
}
140
153
}
141
154
@@ -145,24 +158,24 @@ public void write(DMBWriteContext wc) {
145
158
wc .id (area );
146
159
wc .id (procs );
147
160
wc .id (globalVariableInitializer );
148
- wc .id (idBAC );
161
+ wc .id (domain );
149
162
wc .id (name );
150
163
if (wc .vGEN < 368 )
151
164
wc .id (idOld1 );
152
165
wc .i32 (tickTimeMillis );
153
166
wc .id (client );
154
167
if (wc .vGEN >= 308 )
155
168
wc .id (image );
156
- wc .i8 (unkB );
157
- wc .i8 (unkC );
169
+ wc .i8 (clientLazyEye );
170
+ wc .i8 (clientDir );
158
171
if (wc .vGEN >= 415 )
159
- wc .i16 (unkD );
172
+ wc .i16 (clientControlFreak );
160
173
wc .i8 (unkE );
161
174
if (wc .vGEN >= 230 )
162
- wc .id (idC );
175
+ wc .id (clientScript );
163
176
if (wc .vGEN >= 507 ) {
164
- wc .i16 (idEvenMore .length );
165
- wc .ids (idEvenMore );
177
+ wc .i16 (clientScriptFiles .length );
178
+ wc .ids (clientScriptFiles );
166
179
}
167
180
if (wc .vGEN < 507 )
168
181
wc .id (idX );
@@ -176,22 +189,24 @@ public void write(DMBWriteContext wc) {
176
189
wc .id (hubPasswordHashed );
177
190
if (wc .vGEN >= 266 ) {
178
191
wc .id (serverName );
179
- wc .ints (unkBG );
192
+ wc .i32 (hubNumber );
193
+ wc .i32 (gameVersion );
180
194
}
181
195
if (wc .vGEN >= 266 ) {
182
- wc .i16 (unkG );
183
- wc .ids (idAY );
196
+ wc .i16 (cacheLifespan );
197
+ wc .id (clientCommandText );
198
+ wc .id (clientCommandPrompt );
184
199
}
185
200
if (wc .vGEN >= 276 )
186
201
wc .id (hub );
187
202
if (wc .vGEN >= 305 )
188
203
wc .id (channel );
189
204
if (wc .vGEN >= 360 )
190
- wc .id (idAZB );
205
+ wc .id (skin );
191
206
if (wc .vLHS >= 455 ) {
192
207
wc .i16 (iconSizeX );
193
208
wc .i16 (iconSizeY );
194
- wc .i16 (unkZ );
209
+ wc .i16 (mapFormat );
195
210
}
196
211
}
197
212
}
0 commit comments