Author Topic: Looking into OP2_ART.BMP  (Read 3235 times)

Offline Eddy-B

  • Hero Member
  • *****
  • Posts: 1186
    • http://www.eddy-b.com
Looking into OP2_ART.BMP
« on: March 27, 2005, 09:56:12 AM »
Debugging has been a hell. Right until my pc froze, i got far enough to figure out how the images are retrieved from OP2_ART.BMP
Obviously it's NOT a normal bitmap.. but all images are stored just one after another into 1 large file, which appearantly has been called OP2_ART.BMP and the bitmap header actually contains the "BM" signature.
The first image starts at location 0x0436.

Images are accessed thru a set of calculations, beginning at code location 0x403F20.  The image file itself is stored at a memory section @ 0x89856000, so the first img would then be @ 0x89856436.

The images are accessed thru a pointer table starting @ 0x01475858 from what i can tell now - i'll keep you guys posted on what i find...

Oh, 1 more thing: the actual BitBlt is done in a procedure @ 0x4A9410
Rule #1:  Eddy is always right
Rule #2: If you think he's wrong, see rule #1
--------------------

Outpost : Renegades - Eddy-B.com - Electronics Pit[/siz

Offline Hooman

  • Administrator
  • Hero Member
  • *****
  • Posts: 4954
Looking into OP2_ART.BMP
« Reply #1 on: March 27, 2005, 11:36:35 AM »
This might not paste so well, so let me know if you want the text file.

Edit: Nope. It kinda didn't. All the tabs are lost so it's harder to tell where the loops are that read the data. (Triply nested loops in some parts). There are a few other misc notes I can include, as well as code locations, and decriptions of what the functions do. This should be enough to display all images and animations though. Certainly enough detail has been filled in to process the entire file and duplicate the functionality of the art viewer Cynex made. All that's really left is a few unknown fields to give proper names/descriptions too. I've also got a test VB app that parses through the whole file and can display the still images. I haven't really gotten around to using the animation data yet though.





Outpost 2 unit graphics file format
--------------------------------

Note: This format refers to OP2_ART.PRT.

Note: The pixel data for the unit graphics resides in OP2_ART.BMP
and the indexing information is found in OP2_ART.PRT (in maps.vol).
The .prt file contains the indexing information for the graphics
in the .bmp file. The .bmp file contains the pixel data for all the
unit graphics. It is structured like a regular Windows bitmap file
except that the palette section consists of all zeros. The palettes
are found in the .prt file.

Note: The pixel format and palette to use for a given images is
determined by the indexing structure found in the .prt file.
Typical image formats are 8 bpp, and 1 bpp (unit shadows/etc.)
The images also have variable size, which is specified in the
indexing structure.

Note: The palettes use the same loading code as is used for the
tileset files (well00??.bmp). The begining of this file is very
similar in structure to the tileset files.



Offset    Size    Description
------    ----    -----------
0x0   4   "CPAL" - Palette array section tag
0x4   4   (9) numPalettes
- - - - - - - - - - - - - -
0x8   1052*numPalettes   An array of palettes is read from the file (numPalettes elements)
   - - - - - - - - - -
   4   "PPAL" - Palette section tag
   4   (1048) sectionSize (including this int)
   - - - - - - - - - -
   4   "head" - section header tag (used to control the second level parser)
   4   (4) sectionSize
   - - - - - - - - - -
   4   (1) numTagsLeft - number of tags left to expect at this level of parsing
   - - - - - - - - - -
   4   "data" - palette data section tag
   4   (1024) sectionSize
   - - - - - - - - - -
   1024   paletteData - 256 palette entries of 4 byets each (RGBA format, reversed from what Windows uses by default for GDI)
- - - - - - - - - - - - - -
0x2504   4   (5390) numImages
- - - - - - - - - - - - - -
0x2508   20*numImages      An array of image info structures (numImages elements of 20 bytes each)
   - - - - - - - - - -
   4   ScanlineByteWidth    - number of bytes in each scanline of the image (this should be the width of the image rounded up to a 32 bit boundary)
   4   DataPtr         - The offset of the pixel data into the .bmp file
   4   Height         - height of the image in pixels
   4   Width         - width of the image in pixels
   2   Type         - type of image (also controls bit depth)
   2   PaletteNum      - index of the palette to use for this image (see palette section above)
- - - - - - - - - - - - - -
0x1CA20   4   (2079) numAnimations - how many times to loop in the next section
0x1CA24   4   (24185) numFrames (14 byte structures) - made up of overlayed frame component images
0x1CA28   4   (160922) numFrameComponents (6 byte structures) - components of a frame
0x1CA2C   4   (6012) numFrameOptional? (4 byte structures) - optional data associated with a frame
- - - - - - - - - - - - - -
0x1CA30   ... and the loading code gets really weird here
   The following animation records are loaded in a loop
   (Animation sequence data)
   4   (0x1) ???
   4   selectionBox.left   (pixelX coordinate)
   4   selectionBox.top    (pixelY coordinate)
   4   selectionBox.right  (pixelX coordinate)
   4   selectionBox.bottom (pixelY coordinate)
   4   pixelXDisplacement (reverse direction from an offset, origin is center of tile)
   4   pixelYDisplacement (reverse direction from an offset, origin is center of tile)
   4   (0x0) ??? (0x3C CC/DIRT/Garage/Std. Lab construction/dock, 0x0D spider walking)
   4   numFrames - number of frames in this animation
   - - - - - - - - - -
      The following is loaded from a loop
      (Frame data)
      1   numFrameComponents (if most significant bit is set then read first two optional bytes
      1   (if most significant bit is set then read second two optional bytes)
   - - - - - - - - - -
      Load values into the 4 byte structure
      (Conditionally load these bytes)
      (FrameOptionalInfo)
      1   
      1   
   - - - - - - - - - -
      1   
      1   
   - - - - - - - - - -
         The following is loaded from a loop
         (Frame Component data)
         2   imageInfoIndex (struct6.word3)
         1   (0xFF) (unused/ignored)
         1   frameComponentIndex (out of order components? why?)
         2   pixelXOffset (left, struct6.word1)
         2   pixelYOffset (top, struct6.word2)
   - - - - - - - - - -
   4   num???
   - - - - - - - - - -
      The following is loaded from a loop
      (16 byte structure)
      4
      4
      4
      4
---------------------------



Note: The pixelXDisplacement/pixelYDisplacement in the Animation data gives a global displacement for all animation frames. It is in the reverse direction of a displacement and the origin is the center of the tile. Positive values will move the unit to the left and up from the center. Values of 0 will have the upper left corner of the unit start in the middle of the tile. Keep in mind that the pixelX and pixelY coordinates of the unit are stored relative to the middle of the tile it occupies. These displacement values are subtracted from the pixelX and pixelY values to find the location of the upper left corner of the image being drawn. Also keep in mind the space used for the hitpoint bar that appears above the unit. (Consider the hitpoint bar to be the top of the unit when determining placement).

Note: The pixelXDisplacement/pixelYDisplacement will affect all images draw using the animation sequence. This includes the icon of the unit in it's command pane when it is selected. (But only ever uses the first frame of the animation sequence where the unit is facing right).

Note: The selection box coordinates are given relative to the upper left corner of the unit. This is done after the displacement values are applied. Positive values are down and to the right.




Structures Used By Outpost 2
----------------------------

These structures were used by Outpost 2 during the load process. They don't really relate to the file format, but rather how Outpost 2 stores the data in memory after it's been loaded.


AnimationSequence
Size: 14 bytes
Offset    Size    Description
------    ----    -----------
0x0   2   0x7FFE (hardcoded initialization)
0x2   

0x8   2   numFrameComponents - in this frame of animation (first single byte read AND 0x7F)
0xA   4   &(current 6 byte structure)
---------------------------


FrameComponentInfo
Size: 6 bytes
Offset    Size    Description
------    ----    -----------
0x0   2   pixelXOffset (Left)
0x2   2   pixelYOffset (top)
0x4   2   imageInfoIndex (Image to display in the frame at the given offsets)


FrameOptionalInfo?
Size: 4 bytes
Offset    Size    Description
------    ----    -----------
0x0   1   
0x1   1   
0x2   1   
0x3   1
« Last Edit: March 27, 2005, 11:45:06 AM by Hooman »

Offline Leviathan

  • Hero Member
  • *****
  • Posts: 4055
Looking into OP2_ART.BMP
« Reply #2 on: March 27, 2005, 12:11:59 PM »
Observatory - X0,Y400,L61,R50,S7
Forum - X0,Y400,L65,R50,S3
PlySpcPrt - X0,Y400,L165,R50,S1
GeoPlant - X0,Y450,L41,R50,S5
PlyMedic - X0,Y450,L69,R50,S1
EdenAgri - X0,Y450,L97,R50,S5
PlySpcPrtAni - X0,Y450,L157,R50,S5
Mine - X0,Y500,L33,R50,S8
RoboMiner - X0,Y500,L33,R50,S11
Metior Defence - X0,Y500,L61,R50,S6
PlySpcPrtAni - X0,Y520,L157,R50,S5
???????? - X0,Y520,L162,R50,S5

Offline Hooman

  • Administrator
  • Hero Member
  • *****
  • Posts: 4954
Looking into OP2_ART.BMP
« Reply #3 on: March 27, 2005, 12:32:26 PM »
Lev, what does any of that mean?
 

Offline Leviathan

  • Hero Member
  • *****
  • Posts: 4055
Looking into OP2_ART.BMP
« Reply #4 on: March 27, 2005, 01:27:15 PM »
Its locations of pics in the art.

X and Y are where the bytecodes start in the file.
L - I would guess that it's length
R - number of rows used
S- not sure
 

Offline Hooman

  • Administrator
  • Hero Member
  • *****
  • Posts: 4954
Looking into OP2_ART.BMP
« Reply #5 on: March 27, 2005, 01:38:16 PM »
Hmm, looks like those "S" values could have been the palette numbers.  At any rate, all the positioning and sizing info is stored in the image structs. That info is easy to get access to as long as you know the index of the image in that array of structs. (Basically the index of that Image in the art viewer Cynex made).
 

Offline Leviathan

  • Hero Member
  • *****
  • Posts: 4055
Looking into OP2_ART.BMP
« Reply #6 on: March 27, 2005, 01:46:38 PM »
I think we should email Martyn and ask for the mp client (he said he would give me this last june) and his art extracter code.  Ezekel's says hes now at some sudden launch forums working, also hes on AIM.  

Offline BlackBox

  • Administrator
  • Hero Member
  • *****
  • Posts: 3093
Looking into OP2_ART.BMP
« Reply #7 on: March 27, 2005, 02:35:55 PM »
his art extractor sucks rly bad.

its worse than cynex's. it doesnt even read the .prt, just uses positions in the op2_art.bmp to start reading bits from.

Offline Cynex

  • Newbie
  • *
  • Posts: 31
Looking into OP2_ART.BMP
« Reply #8 on: April 13, 2005, 12:15:20 PM »
Great! - you found 6 of the (8) unknown dwords in the group-info.
I'll try to implement them into the viewer and dll right now.

For the art-viewer and other things just keep waiting.
You already know most of the stuff, so there isn't much to explain anyway.
 

Offline Eddy-B

  • Hero Member
  • *****
  • Posts: 1186
    • http://www.eddy-b.com
Looking into OP2_ART.BMP
« Reply #9 on: April 13, 2005, 02:28:03 PM »
Good to have you back Cynex!
Looking forward to your work :)
Rule #1:  Eddy is always right
Rule #2: If you think he's wrong, see rule #1
--------------------

Outpost : Renegades - Eddy-B.com - Electronics Pit[/siz

Offline Hooman

  • Administrator
  • Hero Member
  • *****
  • Posts: 4954
Looking into OP2_ART.BMP
« Reply #10 on: April 13, 2005, 09:28:24 PM »
I figure I should post the actual .txt file I wrote up. Then you can see where the tabs are. It might help get a better feel for the file structure. I tabbed things in according to the loops they were loaded from.

Looking forward to any comments/additions, Cynex.  :)


Err, error: The file is not in the correct format, or the file size was larger than that allowed. I'll try zipping it. Nope. Well, for those that want the file, you can get a hold of me another way. Oh, and I fixed my ability to send DCCs on IRC. It would appear just the file sender needs port forwarding setup.
 

Offline Leviathan

  • Hero Member
  • *****
  • Posts: 4055
Looking into OP2_ART.BMP
« Reply #11 on: April 14, 2005, 04:11:12 AM »
Whats wrong with pasteing the file?

Offline Hooman

  • Administrator
  • Hero Member
  • *****
  • Posts: 4954
Looking into OP2_ART.BMP
« Reply #12 on: April 14, 2005, 04:39:12 PM »
I did paste the file. That's was my first reply in this thread. But it lost all the tabs when I pasted it so it looks like crap. The original is much easier to read, and the tabs kinda give extra hints or info on how the file is structured. That's why I wanted to post the file as well, so if they wanted to view it in the original formatting with the tabs, they could.