Quote: |
The only other current decompressed data type is the Object section. The object section is determined by having a File Time equal to 0 and the File Name length being 0.
Object Section always starts with this 12 byte header: 4-len str Type - Should be 'CLV1'. Future .lvz formats will have different types, so handle this gracefully. If not a CLV1, can ignore this decompressed data section, since it is of an unknown type for the Continuum .37 .lvz format. i32 Object Count - How many object definitions are in this Object Section. i32 Image Count - How many image definitions are in this Object Section. |
Bob Dole.. Bob Dole... Bob Dole...... bob dole.... bob... dole.... wrote: |
Does that mean i loop once more through the files-header with filename = '' and time_t = 0??? |
Bob Dole.. Bob Dole... Bob Dole...... bob dole.... bob... dole.... wrote: |
How do i start the Objects-header?
I cant find the 'CLV1'-String in any lvz-file around here... |
Bob Dole.. Bob Dole... Bob Dole...... bob dole.... bob... dole.... wrote: |
What i also don't really get is this i1 and i15 thing (not in the quote).
How do i put them together to an i16? I need to put them togther to an i16, or? i16 := Integer(String(i1)+String(i15)) ??? |
Bob Dole.. Bob Dole... Bob Dole...... bob dole.... bob... dole.... wrote: |
BTW: Where can i find a doc about lvl files? |
Bob Dole.. Bob Dole... Bob Dole...... bob dole.... bob... dole.... wrote: |
And that i12 and i4...
i16 := (i12 *2) + i4; |
Code: Show/Hide i16 = (i12 << 4) + i4; |
Code: Show/Hide i16 = (i12 * (2 ^ 4)) + i4; |