Users browsing this thread: 1 Guest(s)
Zelda64 Models
#16
(03-15-2013, 01:58 AM)Friedslick6 Wrote: A good test for .ZOBJ export would be the "Very Old Link" model from the "Ocarina of Time" minigame in "Wario Ware Smooth Moves". Big Grin
https://www.youtube.com/watch?v=HElSJrC_...ata_player

.ZOBJ's and .ZMAP's can only be extracted directly from Ocarina of Time or Majora's Mask. They're files unique to those games, so I'm pretty sure that won't work...

At the moment though, I'm writing version 4 of the script, which has been entirely rewritten from scratch. There have been many improvements, and some new key features will include
  • Being able to specify ram addresses for segments (which will make it possible for the script to import files from other games that use the F3DEX2 microde like SSB64)
  • Being able to import objects not pointed to by the hierarchy
  • Write-back texture clamping (or perm-clamping as I like to call it)
  • Being able to parse all matrices (which will fix some other characters like Zelda)

And by 'rewritten from scratch', I do mean 'rewritten from scratch'. The entire control flow of the script is different.

old:
Code:
locate hierarchies
         +-- build armature
         +-- build display lists
                       +-- dump textures
                       +-- import materials
                       +-- build mesh

new:
Code:
locate hierarchies
locate animations
locate display lists
         +-- ensure no duplicates exist
locate textures (aka. pass 1:  foreach display list)
         +-- calculate texture size
         +-- calculate clamped texture size from uv coords
build model
         +-- dump textures
         +-- import materials
         +-- build hierarchies
         |               +-- build meshes (aka. pass 2.1:  remove from list)
         |               +-- build animations
         +-- build meshes (aka. pass 2.2)

Additionally, I've introduced new class types known as Segment and SegmentTable which have gone a long ways towards making the code cleaner; and there is much more detailed information printed to the console such as the index/address/child/sibling/dlist/location of each bone, the address/format/size of each texture, and the address of each display lists.

As a last note; like I said before this tool is tailored for ripping models specifically from LoZ: Ocarina of Time and LoZ: Majora's Mask. While it may be able to import some of the display lists from other games, it may not support ripping all of the display lists from other games...in fact...I almost guarantee it won't...
Thanked by:


Messages In This Thread
Zelda64 Models - by SoulofDeity - 03-14-2013, 01:07 AM
RE: Zelda64 Models - by Ton - 03-14-2013, 01:14 AM
RE: Zelda64 Models - by SoulofDeity - 03-14-2013, 01:19 AM
RE: Zelda64 Models - by Previous - 03-14-2013, 05:45 AM
RE: Zelda64 Models - by SoulofDeity - 03-14-2013, 08:45 AM
RE: Zelda64 Models - by Garamonde - 03-14-2013, 07:47 AM
RE: Zelda64 Models - by Garamonde - 03-14-2013, 09:02 AM
RE: Zelda64 Models - by SoulofDeity - 03-14-2013, 10:09 AM
RE: Zelda64 Models - by Garamonde - 03-14-2013, 11:18 AM
RE: Zelda64 Models - by SoulofDeity - 03-14-2013, 11:47 AM
RE: Zelda64 Models - by Ton - 03-14-2013, 12:24 PM
RE: Zelda64 Models - by Garamonde - 03-14-2013, 02:01 PM
RE: Zelda64 Models - by wat - 03-14-2013, 04:05 PM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 12:19 AM
RE: Zelda64 Models - by Friedslick6 - 03-15-2013, 01:58 AM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 05:59 AM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 02:37 PM
RE: Zelda64 Models - by Friedslick6 - 03-15-2013, 07:16 AM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 09:03 AM
RE: Zelda64 Models - by o0DemonBoy0o - 03-15-2013, 11:01 AM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 12:15 PM
RE: Zelda64 Models - by Random Talking Bush - 03-15-2013, 02:07 PM
RE: Zelda64 Models - by josh98 - 03-15-2013, 02:42 PM
RE: Zelda64 Models - by Friedslick6 - 03-15-2013, 03:30 PM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 03:58 PM
RE: Zelda64 Models - by Friedslick6 - 03-15-2013, 04:11 PM
RE: Zelda64 Models - by SoulofDeity - 03-15-2013, 05:46 PM
RE: Zelda64 Models - by TGE - 03-18-2013, 08:12 AM
RE: Zelda64 Models - by SoulofDeity - 03-21-2013, 10:54 PM
RE: Zelda64 Models - by SoulofDeity - 04-07-2013, 07:52 PM
RE: Zelda64 Models - by Txikimorin - 04-30-2013, 06:44 PM
RE: Zelda64 Models - by SoulofDeity - 06-03-2013, 03:19 AM
RE: Zelda64 Models - by RodLima - 06-06-2013, 12:12 PM
RE: Zelda64 Models - by Tiberious - 06-15-2013, 01:35 PM
RE: Zelda64 Models - by SoulofDeity - 06-18-2013, 08:48 PM
RE: Zelda64 Models - by RodLima - 06-18-2013, 09:31 PM
RE: Zelda64 Models - by SoulofDeity - 06-19-2013, 06:35 AM
RE: Zelda64 Models - by RodLima - 06-19-2013, 12:53 PM
RE: Zelda64 Models - by Previous - 04-30-2013, 06:59 PM
RE: Zelda64 Models - by SoulofDeity - 06-11-2013, 04:39 PM
RE: Zelda64 Models - by RodLima - 06-11-2013, 05:07 PM
RE: Zelda64 Models - by Leo22 - 06-13-2013, 09:04 AM
RE: Zelda64 Models - by RodLima - 06-13-2013, 09:34 AM
RE: Zelda64 Models - by SoulofDeity - 06-19-2013, 09:36 PM
RE: Zelda64 Models - by RodLima - 06-19-2013, 10:07 PM
RE: Zelda64 Models - by SoulofDeity - 08-25-2013, 02:27 AM

Forum Jump: