Isn't that "terminator" byte just the "reserved" byte of an RGBQUAD? Or the Alpha channel anyways.
Oh, and here's what I've dug up on that 20 byte structure from an old VB project
Private Type GraphicsFrame
NumScanLines As Long
DataPtr As Long
height As Long
width As Long
unk As Integer
Palette As Integer
End Type
An array of those follows the palettes. There should be a count of the number of these structures between the palette data and the actual structure array. DataPtr is an offset into the OP2_ART.BMP pixel data. Palette is the index of the palette (zero based) loaded earlier in the PRT file. Each of these structures defines a frame of a unit image. (Building - full heath, building - damaged, explosion frame, etc.). It's interesting how the height comes before the width in the structure. That had me puzzled for quite some time. Seemed very odd.
Well, I've worked on and tested my COMponent. :whistle:
Looks like it's actually at a very useable stage right now. It can access most things now. Certainly everything that's immediately important. I have yet to integrate the decompression code. Currently it fails for compressed data pretty much as if the data wasn't there. That can be fixed with a simple backend upgrade without any recompiles to any frontend code. I also don't have support for the sound format built in yet. Comming soon. Anyways, I suspect it's about a day or two of work for each one.
As for the uncompressed data. That's completely accessible. Still no archive writing but I don't really consider that of immediate importance.
It might help if you were to take a look at it and suggest any interface changes/improvements to be done. At any rate, I feel like I'm pretty close to calling this version 1.0. Err, btw. It might need a splash screen. It takes almost 2 seconds to load all the data. But then again, it's nearly 20 megabytes that it needs to load.
So, are you gonna have time to work on the front end anytime soon? Or am I gonna have to sit here stewing in my own juices for a while? :blink:
Ok, updates and corrections to the PRT file format.
Private Type ImageInfo
ScanLinesByteWidth As Long
DataPtr As Long
Height As Long
Width As Long
Type As Integer
PaletteNum As Integer
End Type
' The field "Type" has the following values/meanings
' 0 - menu graphic
' 1 - in game graphic
' 2
' 3
' 4 - unit shadows - 1 bit graphics
' 5 - unit shadows - 1 bit graphics
' ... more, lots more? Saw a 33, and 65 somewhere
As you can probably guess from the code, I've written a test app in VB. It'll load the palette info from the PRT and the image info section after that. Anyways, the first field is a correction. I noticed it was similar to the width value but DWORD aligned. Having it marked as "NumScanlines" before made it seem really odd that Width comes after Height since the "NumScanlines" value was similar to width and not height. Anyways, looks like it's just a DWORD aligned width, which windows seems to require for the in memory storage of bitmaps.
I took a quick scroll through all the images. Seems not all of them share the same format. Certain ones still display as garbage. It seems to depend on the type field. I'm gonna see if they might be 16 bit images. I've also noticed the type field changes depending on where the graphic is used. Menu buttons all seem to be marked as 0 while all the unit graphics are marked as 1.
Anyways, the PRT loading coding gets pretty messy. It also uses a tripply nested loop with lots of floating point instructions in it. Doesn't load any data in that loop so I've largely been ignoring it. Kinda hard to tell how the rest of the file is structured at the moment but it seems that after the image info there is a number of counts. Looks like 4 of them. Corresponding MemAllocs follow that allocate a multiple of these values (?, 14, 6, 4). Only saw 3 MemAllocs.
Btw, I saw some things that looked kinda like microbe units. :blink:
Sorta similar to how spiders/scorpions looked, but more cellular like. They appeared to be part of a walking/attacking animation sequence.
Edit: Doh. It was just the sparks from a repair vehicle repairing something. <_< Well, maybe we can get away with using them and other people won't catch on. :whistle:
Here's a really simple way to change the server OP2 tries to connect to when you choose Multiplayer->SIGS. Just edit C:\Windows\Sierra.ini
[SIGS]
ValidateIP=<IP Address>
I've also noticed it has a MachineID in there too. Anyways, maybe it was for some anti piracy stuff.
Either that or change the text string in SNWValid.dll in the System32 directory. Hmm, didn't realize OP2 had files there. :blink:
Anyways, the default value was "smc.sierra.com".
I have some idea how units are created now. Very interesting.
unitTypeInfo.CreateUnit(int pixelX, int pixelY, int unitIndex?)
It uses a virtual function on the UnitTypeInfo object to create an instance of a Unit object. The first virtual function in the UnitTypeInfo's vftable is the creation function.
Try chasing through memory from a unit to it's unit creation function. It's kind fun and takes a little while.
(Unit* => Unit.vftable => Unit.GetUnitTypeInfo => UnitTypeInfo* => UnitTypeInfo.vftable => UnitTypeInfo.CreateUnit)