editing text continues...

This commit is contained in:
sShemet
2025-12-14 03:07:25 +05:00
parent 6ab96ca60d
commit b6cafcbb22
230 changed files with 1768 additions and 682125 deletions

View File

@@ -21,6 +21,27 @@ struct cylCollObj {
u8 collisFlag;
};
struct boxObj {
u16 coordsVertex;
u16 boxId;
u16 xWidth;
u16 yWidth;
u8 Heigth;
u8 someFlag1;
u8 someFlag2;
u8 someFlag3;
};
struct floorObj {
u16 vertId1;
u16 vertId2;
u16 vertId3;
u16 vertId4;
u16 objectId;
u8 Heigth;
u8 someFlag;
};
struct block {
u32 blockSize;
u32 blockOffset;
@@ -30,7 +51,8 @@ struct header {
block vertexMap;
block collisionLines;
block cylinders;
block hz2;//and so on...
block boxes;
block floors;
coord coords[vertexMap.blockSize]
@ vertexMap.blockOffset;
@@ -38,6 +60,10 @@ struct header {
@ collisionLines.blockOffset;
cylCollObj cyl[cylinders.blockSize]
@ cylinders.blockOffset;
boxObj box[boxes.blockSize]
@ boxes.blockOffset;
floorObj floor[floors.blockSize]
@ floors.blockOffset;
};
header colls @ 0x00;