Skip to content

Commit 5a87650

Browse files
committed
Add Willox's updates - part 1, World
1 parent 8311a29 commit 5a87650

File tree

9 files changed

+96
-53
lines changed

9 files changed

+96
-53
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ after/external/test-subjects
1818
research-projects/*.dmb
1919
research-projects/*.lk
2020
research-projects/*.int
21+
research-projects/*.rsc
2122
# clutters the repo
2223
research-projects/*.sav
2324
# not sure what to do with these, and it's not like they're hard to get

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ Tomeno: important parts of string decryption and protocol decryption
2727
BobOfDoom, NGGJamie, Crispy: Documented the BYOND Topic protocol at https://github.com/NGGJamie/byond-topics
2828
This was useful to understand BYOND packet framing, not covering encryption
2929

30+
Willox: Documented some of the previously unknown properties at https://github.com/willox/dmasm/blob/dmb/src/dmb/loader.rs
31+
3032
Stephen001: Partial documentation of some format version (right now unknown but >= 307 < 494) at https://github.com/Stephen001/Lego
3133

3234
The Red Book (Super Saiyan X, LordAndrew, Kaiochao, DarkCampainger et al.): Informed me of the existence of modified types.

after-tools/settings.gradle

-2
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package after.io;
22

3+
import after.annotations.CacheFileID;
34
import after.annotations.ClassID;
45
import after.annotations.ListOfProcID;
56
import after.annotations.MobTypeID;
@@ -9,6 +10,8 @@
910
import after.io.framework.DMBWriteContext;
1011
import static after.io.DMBObjectEntryBasedSubblock.OBJ_NULL;
1112

13+
import aedium.ElementMarkers;
14+
1215
public class DMBStandardObjectIDs {
1316
@MobTypeID // Nullable
1417
public int mob = OBJ_NULL;
@@ -21,7 +24,8 @@ public class DMBStandardObjectIDs {
2124
public int procs = OBJ_NULL;
2225
@ProcID // Nullable
2326
public int globalVariableInitializer = OBJ_NULL;
24-
public int idBAC = OBJ_NULL;
27+
@StringID // Nullable
28+
public int domain = OBJ_NULL;
2529
@StringID
2630
public int name = OBJ_NULL;
2731
// GEN < 368 (yes, under)
@@ -34,17 +38,19 @@ public class DMBStandardObjectIDs {
3438
@ClassID
3539
public int image = OBJ_NULL;
3640
// --
37-
public byte unkB;
38-
public byte unkC = 1;
41+
public byte clientLazyEye;
42+
public byte clientDir = 1;
3943
// GEN >= 415
40-
public short unkD;
44+
public short clientControlFreak;
4145
// --
4246
public byte unkE;
4347
// GEN >= 230
44-
public int idC = OBJ_NULL;
48+
@StringID // Nullable
49+
public int clientScript = OBJ_NULL;
4550
// --
4651
// GEN >= 507
47-
public int[] idEvenMore = new int[0];
52+
@ElementMarkers(CacheFileID.class)
53+
public int[] clientScriptFiles = new int[0];
4854
// GEN < 507 (yes, under)
4955
public int idX = OBJ_NULL;
5056
// GEN >= 232
@@ -59,48 +65,53 @@ public class DMBStandardObjectIDs {
5965
// GEN >= 266
6066
@StringID // Nullable
6167
public int serverName = OBJ_NULL;
62-
public int[] unkBG = new int[2];
68+
public int hubNumber;
69+
public int gameVersion;
6370
// 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;
6676
// GEN >= 276
6777
@StringID // Nullable
6878
public int hub = OBJ_NULL;
6979
// GEN >= 305
7080
@StringID // Nullable (?) but really should be "default"
7181
public int channel = OBJ_NULL;
7282
// GEN >= 360
73-
public int idAZB = OBJ_NULL;
83+
@CacheFileID // Nullable
84+
public int skin = OBJ_NULL;
7485

7586
// LHS >= 455
7687
public short iconSizeX = 32;
7788
public short iconSizeY = 32;
78-
public short unkZ = (short) 32768;
89+
public short mapFormat = (short) 32768;
7990

8091
public void read(DMBReadContext rc) {
8192
mob = rc.id();
8293
turf = rc.id();
8394
area = rc.id();
8495
procs = rc.id();
8596
globalVariableInitializer = rc.id();
86-
idBAC = rc.id();
97+
domain = rc.id();
8798
name = rc.id();
8899
if (rc.vGEN < 368)
89100
idOld1 = rc.id();
90101
tickTimeMillis = rc.io.getInt();
91102
client = rc.id();
92103
if (rc.vGEN >= 308)
93104
image = rc.id();
94-
unkB = rc.io.get();
95-
unkC = rc.io.get();
105+
clientLazyEye = rc.io.get();
106+
clientDir = rc.io.get();
96107
if (rc.vGEN >= 415)
97-
unkD = rc.io.getShort();
108+
clientControlFreak = rc.io.getShort();
98109
unkE = rc.io.get();
99110
if (rc.vGEN >= 230)
100-
idC = rc.id();
111+
clientScript = rc.id();
101112
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);
104115
}
105116
if (rc.vGEN < 507) {
106117
idX = rc.id();
@@ -115,27 +126,29 @@ public void read(DMBReadContext rc) {
115126
hubPasswordHashed = rc.id();
116127
if (rc.vGEN >= 266) {
117128
serverName = rc.id();
118-
rc.ints(unkBG);
129+
hubNumber = rc.io.getInt();
130+
gameVersion = rc.io.getInt();
119131
}
120132
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();
123136
}
124137
if (rc.vGEN >= 276)
125138
hub = rc.id();
126139
if (rc.vGEN >= 305)
127140
channel = rc.id();
128141
if (rc.vGEN >= 360)
129-
idAZB = rc.id();
142+
skin = rc.id();
130143

131144
if (rc.vLHS >= 455) {
132145
iconSizeX = rc.io.getShort();
133146
iconSizeY = rc.io.getShort();
134-
unkZ = rc.io.getShort();
147+
mapFormat = rc.io.getShort();
135148
} else {
136149
iconSizeX = 32;
137150
iconSizeY = 32;
138-
unkZ = (short) 32768;
151+
mapFormat = (short) 32768;
139152
}
140153
}
141154

@@ -145,24 +158,24 @@ public void write(DMBWriteContext wc) {
145158
wc.id(area);
146159
wc.id(procs);
147160
wc.id(globalVariableInitializer);
148-
wc.id(idBAC);
161+
wc.id(domain);
149162
wc.id(name);
150163
if (wc.vGEN < 368)
151164
wc.id(idOld1);
152165
wc.i32(tickTimeMillis);
153166
wc.id(client);
154167
if (wc.vGEN >= 308)
155168
wc.id(image);
156-
wc.i8(unkB);
157-
wc.i8(unkC);
169+
wc.i8(clientLazyEye);
170+
wc.i8(clientDir);
158171
if (wc.vGEN >= 415)
159-
wc.i16(unkD);
172+
wc.i16(clientControlFreak);
160173
wc.i8(unkE);
161174
if (wc.vGEN >= 230)
162-
wc.id(idC);
175+
wc.id(clientScript);
163176
if (wc.vGEN >= 507) {
164-
wc.i16(idEvenMore.length);
165-
wc.ids(idEvenMore);
177+
wc.i16(clientScriptFiles.length);
178+
wc.ids(clientScriptFiles);
166179
}
167180
if (wc.vGEN < 507)
168181
wc.id(idX);
@@ -176,22 +189,24 @@ public void write(DMBWriteContext wc) {
176189
wc.id(hubPasswordHashed);
177190
if (wc.vGEN >= 266) {
178191
wc.id(serverName);
179-
wc.ints(unkBG);
192+
wc.i32(hubNumber);
193+
wc.i32(gameVersion);
180194
}
181195
if (wc.vGEN >= 266) {
182-
wc.i16(unkG);
183-
wc.ids(idAY);
196+
wc.i16(cacheLifespan);
197+
wc.id(clientCommandText);
198+
wc.id(clientCommandPrompt);
184199
}
185200
if (wc.vGEN >= 276)
186201
wc.id(hub);
187202
if (wc.vGEN >= 305)
188203
wc.id(channel);
189204
if (wc.vGEN >= 360)
190-
wc.id(idAZB);
205+
wc.id(skin);
191206
if (wc.vLHS >= 455) {
192207
wc.i16(iconSizeX);
193208
wc.i16(iconSizeY);
194-
wc.i16(unkZ);
209+
wc.i16(mapFormat);
195210
}
196211
}
197212
}

formats/DMB.md

+20-14
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# INCOMPLETE BUT STRUCTURALLY COMPLETE UP TO V512
22

3+
Addendum to this disclaimer - I haven't yet found indications of anything going particularly *wrong* when using this information on V514.
4+
5+
But that may simply be due to a lack of feature use (i.e. RHS version differences).
6+
37
## Taxonomy
48

59
An "ObjectID" is a generic object ID which there isn't details for yet.
@@ -405,7 +409,7 @@ It is reasonable to assume that null instances are used to pad out long empty re
405409
3. Nullable ClassID area
406410
4. Nullable ListID of ProcID procs (this contains procs attached to /world)
407411
5. Nullable ProcID globalVariableInitializer (this contains global variable initializers)
408-
6. Nullable ObjectID unk
412+
6. Nullable StringID domain (this is `world.domain`, a mysterious, seemingly undocumented property - thanks to Willox for finding this)
409413
7. StringID name
410414

411415
If GEN Version < 368 (YES, UNDER) {
@@ -414,7 +418,7 @@ If GEN Version < 368 (YES, UNDER) {
414418

415419
}
416420

417-
1. Uint32 tickTimeMillis (This is related to server tick time and is likely in milliseconds. Seems to default to 100.)
421+
1. Uint32 tickTimeMillis (this is `world.tick_lag`, multiplied by 100 - essentially, the time per tick measured in integer milliseconds.)
418422
2. ClassID client
419423

420424
If GEN Version >= 308 {
@@ -423,27 +427,27 @@ If GEN Version >= 308 {
423427

424428
}
425429

426-
1. Uint8 unk
427-
2. Uint8 unk (Seems to default to 1, but isn't necessary)
430+
1. Uint8 clientLazyEye (this is `client.lazy_eye`, used for camera control - thanks to Willox for finding this)
431+
2. Uint8 clientDir (this is `client.dir` - defaults to 1 (NORTH). - thanks to Willox for finding this)
428432

429433
If GEN Version >= 415 {
430434

431-
1. Uint16 unk
435+
1. Uint16 clientControlFreak (this is `client.control_freak`, used to restrict skins and macros - thanks to Willox for finding this)
432436

433437
}
434438

435439
1. Uint8 unk (again)
436440

437441
If GEN Version >= 230 {
438442

439-
1. ObjectID unk
443+
1. Nullable StringID clientScript (this is `client.script` *specifically* as a string - thanks to Willox for finding this)
440444

441445
}
442446

443447
If GEN Version >= 507 {
444448

445-
1. Uint16 evenMoreCount
446-
2. Array of evenMoreCount ObjectIDs evenMore
449+
1. Uint16 clientScriptCacheFileCount
450+
2. Array of clientScriptCacheFileCount CacheFileIDs clientScriptCacheFiles (this is every `client.script` file - thanks to Willox for finding this)
447451

448452
}
449453

@@ -480,20 +484,22 @@ If GEN Version >= 341 {
480484
If GEN Version >= 266 {
481485

482486
1. Nullable StringID serverName
483-
2. Array of 2 Uint32s unk
487+
2. Uint32 hubNumber (This is where `world.hub` goes when a number is provided - thanks to Willox for finding this)
488+
3. Uint32 gameVersion (`world.version`, not to be confused with the BYOND version - thanks to Willox for finding this)
484489

485490
}
486491

487492
If GEN Version >= 272 {
488493

489-
1. Uint16 unk (best set to 30)
490-
2. Array of 2 Nullable ObjectIDs unk
494+
1. Uint16 cacheLifespan (Best set to 30. `world.cache_lifespan`, in days - thanks to Willox for finding this)
495+
2. Nullable StringID clientCommandText (`client.command_text` - thanks to Willox for finding this)
496+
3. Nullable StringID clientCommandPrompt (`client.command_prompt` (undocumented?) - thanks to Willox for finding this)
491497

492498
}
493499

494500
If GEN Version >= 276 {
495501

496-
1. Nullable StringID hub (this is the `user.game` hub name)
502+
1. Nullable StringID hub (this is the `user.game` hub name, i.e. `world.hub`)
497503

498504
}
499505

@@ -505,15 +511,15 @@ If GEN Version >= 305 {
505511

506512
If GEN Version >= 360 {
507513

508-
1. ObjectID unk
514+
1. Nullable CacheFileID skin (DMI and friends - thanks to Willox for finding this)
509515

510516
}
511517

512518
If LHS Version >= 455 {
513519

514520
1. Uint16 iconSizeX (default 32)
515521
2. Uint16 iconSizeY (default 32)
516-
3. Uint16 unk (default 32768)
522+
3. Uint16 mapFormat (default 32768 - thanks to Willox for finding this)
517523

518524
}
519525

research-projects/Makefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
OBJECTS = \
22
proc-inherit-quirks-1.dmb proc-inherit-quirks-2.dmb proc-inherit-quirks-3.dmb \
33
rand-inherit.dmb turf-atom-equivalence.dmb savefile.dmb world-channel.dmb \
4-
modified-types.dmb a-very-long-output.dmb mapsurgery-game.dmb mapsurgery-map.dmb
4+
modified-types.dmb a-very-long-output.dmb mapsurgery-game.dmb mapsurgery-map.dmb \
5+
world-oddprops.dmb
56

67
all: $(OBJECTS)
78
.PHONY: clean

research-projects/a.dms

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// nope
2+
<A/>
3+

research-projects/b.dms

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
// nope
2+
<B/>
3+

research-projects/world-oddprops.dme

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
// World odd properties
2+
3+
/world
4+
domain = "this is an example of string" // Thanks to Willox
5+
tick_lag = 0.5
6+
hub = 1337
7+
8+
/client
9+
script = 'a.dms'
10+
script = 'b.dms'
11+
script = "<C/>"
12+
command_text = "Outstandingly pokable."
13+
command_prompt = "Outstandingly undocumented."
14+

0 commit comments

Comments
 (0)