So, just to update you all and for the sake of keeping track of any progress done and what has to be done:
That's a pre-release tool by Maki:
https://github.com/MaKiPL/ff7_snowboardTool/releases/tag/0.9However, as per Kaldarasha we are missing the skeleton info.
Kaldarasha: "I need also the skeleton info, and a way to modify it. Best would be if the pieces are seen at the skeleton as on kimera. Even if there would be a limit for the tris I could make a stretched recolor of the default model. The final touch would be to edit the animations to adjust the models hight."
Maki: "There's no skeleton info in TMD file, every chunk/object like Clouds right arm is just a model without anything else, there's no animation data inside the .TMD files"
TrueOdin was suggesting: "Something I would do personally for this topic is to start the game in RenderDoc, get to the minigame and catch several frames.
Afterwards analyze the various draw call for each frame and try to find out how the engine is passing the information.
Once it's clear what the engine it's passing, the first step it's to find those models that are being passed and try to reassemble them"
EDIT 27/01/23 - Last updates, long story short from the discord:
Lazaro: "I tried RenderDoc with the Nino's imported model. It seems that are triangles that are drawn (they are in RenderDoc mesh feature), you can even saw and select them, but in the game they are not rendererd. So, the only thing I can think is happening is in the winding order."[...]
Maki: "Ok, then it's indeed backface culling happening on inverted normals - so winding order"[...]
Lazaro: "It must be, because AFAIK the TMD models has 0 normals. With the P Model I have the normals (I have to compute them for rendering), but when I convert to TMD, I don't have them. I will have to check the winding order in the part where I assign the vertices of both structs."[...]
TrueOdin: "and I think this is your issue
https://gamedev.stackexchange.com/questions/72754/cull-mode-back-faces "[...]
Lazaro: "Well, this is what I tried to say all this time. We have an issue of winding order for the vertices of the triangles."
EDIT 14/02/23 - Last updates, long story short from the discord:
Snowboard limit of 84 verticies is removed by Maki. Getting finally the first steps into modding Snowboard right.
EDIT 20/02/23 - Last updates, long story short from the discord:
Lazaro: "A bit more of testing. I added more parts of the model. But it is a bit difficult to make adjust it to the skeleton (we don't know yet where it is). At least the len of each part. And we don't know either which animation is using. Maybe the angles are embedded also. Apart of all this, the parts don't correspond with the field model for example. I had to join two of the parts of the arms. And the legs are another history. There is only 1 part of the leg for both legs. So, there is only 1 upper leg, 1 lower leg and 1 foot as objects, but then it uses the same model for each of the legs. Oh, and lastly, the accuracy/definition of the model. I'm not sure if we will be able to improve the detail, because the TMD uses shorts (when normally we would be using floats for the vertices x/y/z)."
Kaldarasha: "I have rebuild the skeleton based on the body parts. So we have a good idea how it does look. The problem is that we can't use float numbers, therefore we actually need big integer values. But this means we need a way to downscale these in the game engine, which I guess doesn't care if int or float is used."
EDIT 12/05/23 - Last updates, long story short from the discord:
Kaldarasha:
So that's where we stand at with snowboard modding scene so far. Discord Qhimm Forums, for who wants to collaborate.