April 03, 2025, 07:58:11 AM

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - dmgambone

Pages: [1] 2
1
The Slack group is still up: http://nfl-blitz-data-editor.slack.com/

But like Jake said, it's been quiet the second half of 2020 and first half of 2021.  Hopefully we pick things back up in the rest of 2021.

2
To make collaboration a bit easier, I setup a Slack team: https://join.slack.com/t/nfl-blitz-data-editor/shared_invite/zt-eep1rr5g-fs5V6AWBK9EP37OLs5hbJA

It's open to anyone who wants to help.

3
Does the demo work on Windows 10?  Do I need a specific version of DirectX?

4
Oh, one other thought I had about the UI.  I would be really nice if it were to tie into an actual NFL database, like https://www.pro-football-reference.com/, to allow the user to import a specific season.  The team rankings would be generated from that as well as allow the user to import players based on that season's current players list.

5
Sorry, I don't know why I haven't received notifications of these posts.  Let me give you an update and some responses to your questions:

Where I'm at:
With the whole COVID-19 lockdown, work actually got more significant in the business I'm in (software development against health care data).  You can image the amount of demand we're getting right now.  Anyway, where I last left things is trying out modifying the data file and re-export a CHD to MAME.  That failed miserably.  I even tried extracting a CHD and recompressing the CHD only to have it fail as well.  So that testing approach isn't going to work.

Anyway, I'm back to working on the code and so let's pick up with your questions:

1) Thoughts on Blazor/WebWindow
TBH: Not a Blazor fan.  I'm a web developer so I embrace JavaScript to do my client-side development.  But that doesn't mean it doesn't have value as a tool to build desktop apps.  So if you think that it would work for the desktop, I'm fine with that.

2) When building UIs, I do generally come up with some wireframes around what I'm trying to accomplish.  It helps see things first before putting them in code.  That being said, I'm often building complex UIs where this is likely fairly straight forward in what we are trying to accomplish.  Writing out the goals of what the UI is supposed to let the user do would be the first step and then we can mock some things up from there.  Balsamiq is a great mockup tool.

3) PC version vs Arcade version: Are all Blitz Arcade versions similar (ie: Blitz classic, Blitz '99, and Blitz 2000) compared to the PC version?  I would targeting only Blitz 2000 to start with as it's easy to upgrade any arcade to the Blitz 2000 with a couple of chip swaps.  If PC is compatible with Arcade, that would also help there.  Ideally, the way I see NFLBlitzDataEditor.Core would contain readers and writers for specific platforms/version.  This would allow the UI to simply swap between which ones they want use the interfaces to access the methods to read/write.

I have an NFL Blitz classic and need to install the Blitz 2000 upgrade + Flash Drive mod, but I may have to get myself another board so that I can develop and test on the hardware without constantly taking apart my arcade cabinet.

Let me refreshed with the code again and see where we stand.  I remember I was facing a challenge of there being some odd image files mixed around.  Maybe that code with debugger logic in it will help.

6
Ugh, nevermind about the previous post regarding the Versions.  Not every V3 has the same offset.  Some don't have an offset at all...  :(


7
I figured out the issue with some images not being extracted properly.  So the UInt32 value stored prior to the format appears to be a version number.  When the value is 2, the image data comes immediately after the header.  When the value is 3, the image data is offset by 2,560 bytes.  I'm not sure why it's 2,560 bytes. 

One thing that I saw while trying to build the image processing code was that the images are padded at the end.  Each image block (start of image to end of image + padding) is a data block that is evenly dividable by 512.  I'm wondering if the reason to add the padding in there is to move past a boundary and ensure that the image doesn't pick up any artifacts.  Not sure, but it looks like those trouble images are extracting properly now.

8
Hmm, I'm looking at the ARHLML.WMS entry in the data file.  This is what I see:
Code: [Select]
Offset(d) 00 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47

00000000  41 52 48 4C 4D 4C 2E 57 4D 53 00 00 84 AB 24 80 00 00 2A 43 00 00 00 43 00 00 AA 42 00 00 80 C2 00 00 00 00 00 00 2A 3F 00 00 00 00 00 00 80 3F  ARHLML.WMS..„«$€..*C...C..ªB..€Â......*?......€?
I don't see the values you wrote out there.  I'm noticing some oddities in extracting the image data as well.  For example, the Cowboys helmets (PC version = DAHLML.WMS and DAHLMR.WMS) aren't pulled properly.  The image header record is saying the image is 256x256, where every other helmet image is 256x128.

Looks like I need to do more investigating...

9
Jaker, how did you get those offsets?  Are you using the NFL Blitz Gold CHD or the NFL Blitz Classic CHD?  I'm using NFL Blitz 2000 (Gold?) and not seeing how you got that.

Searching for ARHLML.WMS seems to find only 1 match in a list of WMS records (starts at offset 91337612).  Those records appear to be 48 bytes long and none of the values in the ARHLML.WMS seem to match what you got there.

10
I've pushed the image code in the branch
Code: [Select]
image-support

FYI: This is how I'm planning for this solution to be structured:
  • NFLBlitzDataEditor.Core:  A .NET standard assembly that contains the core functionality around processing the data file
  • NFLBlitzDataEditor.UI:  A .NET Core WPF application that uses NFLBlitzDataEditor.Core.  This is what users will use to modify the data file

Right now, I'm just trying to get some bits and pieces together.  Ultimately, this is the structure I will have for the solution.

11
Right now, I'm just finding images based on the occurrence of 0x05800000 to start of the record.  I don't know what image files they map to, although some of the one's I outputted match the offsets you've posted.

There's also WMS file records that are 44 blocks wide starting at position 0x056C0F2C.  But those pointers don't seem to match anything.

12
FYI: Starting a new thread that is appropriately named.

13
Creating this new topic from the original topic "Can't figure out how to update arcade Blitz" - http://nflblitzfans.com/index.php?topic=574.0

So Jaker3... The extraction of images seems to moving along and I made a shocking discovery: blitz2k.chd contains NBA Jam images...


14
What I've been seeing is that much of the data is stored in fixed record format, usually with all of them listed one right after the other.  Teams and Players were like that and I'm betting that the complete image list is stored the same way.  Just need to figure out that format.

What sometimes makes this a bit trickier is that the images you currently have are the PC version, but are not identical.  For example, I appear to have found the equivalent of CHEER501.WMS in the arcade data file, but the PC version does not have the title of 'The Cheerleaders' where the arcade version does.

I'm still working on the conversion of the image format to 32-bit RGBA.  I thought I had it correct, but when I output one of the images, it's wrong.  I'm trying to find a good reference image that is the same in the arcade as it is in PC game.   

15
Yes, one of the values is mipmap level.  It's the 7th uin32.  The values are 0 (no mipmapping), 2, 4, 8. 

8 is what you will see in all of the LOD (level of details) images used for the uniforms (like CHIHLOD.WMS) or the banner page (BANPAGE.WMS).

The Ads only use 2 levels (ADS_D.WMS).

Looking at all the actual images, this makes sense.

I also found another file format: 0x0b == RGBA1555.  Basically colors are 5 bit channels, and alpha is 1 bit.


Pages: [1] 2