Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 5 of 5

Thread: the problems of psx model ripping

  1. #1
    Member wolfgar's Avatar
    Join Date
    Oct 2009
    Location
    the middle of the woods
    Posts
    89
    Thanks
    3
    Thanked 1 Time in 1 Post

    Question the problems of psx model ripping

    i know this would be considered advanced , maybe even more advanced than the advanced thread , but i'm a noob so i put it here where i belong , lol

    i was looking for a way to get the 3d model from a game i was playing but every thing i've tried failed . i know this could work , but i just dont know how .

    the code i found was probably translated from hex ( due to the large hex dump to the right and hex inside of parts of it ) this is a capture of a single frame from the game ( a tiny piece of it )
    dma
       madr=(hex code)
       bcr=(hex code)
       chcr=(hex code)
       otag  -i think it stands for object tag-
          0 words @ (hex address)
          9 words @ (hex address)
             polyt4  -my guess , it means its a poly-quad-
                rbg=000000
                xy0=340,84  -i think these are the X and Y coordinates to a single vertex of the quad -
                uv0=49,126 -but i dont get this , or where the Z coordinates are-
                ( 3 more sets of tags like the last 2 )
                tpage=0085   
                clut=7880
                abe=0
                tge=1   -no clue what these last 4 properties are either-
       ( then it skips back up to the next "9 words @ (hex address)" )

    what i would like to do is find out how to identify the tags that were used here ( aka the dma otag 9 words @ ___ and the others in the polyt4 and it ) then extract the info , figure out how to read the 3d vars ( i'm used to xyz , not xy/uv ) and save it as some kind of 3d format so that i can see if its right

    what i know i need to do is:
    find a way to capture the 1 frame i need
    find only the 'dma' objects with the polyt4 in it
    and extract each poly coord to be placed in a dif file format ( but i'll start with just an array of coords for now)

    things i need help with ... about 95% of all of the above >.<
    Programming: the art that fights back


  2. #2
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: the problems of psx model ripping

    Almost all games have their models stored on the hard disk. Rather than using a dump, look through the game files for something like "resources" or models, then google for the necessary program to extract/open the specific model you want.

  3. #3
    Member wolfgar's Avatar
    Join Date
    Oct 2009
    Location
    the middle of the woods
    Posts
    89
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default Re: the problems of psx model ripping

    the problem with that the games i'm trying to get the files from dont have it as simple as that . most have a 2 - 4 files , none of witch even vaguely sound like they would be a 3d model ( SLUS_####.## and something called System but has the look of a internet connection ) the games i'm trying to rip models from aren't ur average computer game , its a iso/rom of a ps1 game run on a emulator.
    Programming: the art that fights back

  4. #4
    Super Moderator helloworld922's Avatar
    Join Date
    Jun 2009
    Posts
    2,896
    Thanks
    23
    Thanked 619 Times in 561 Posts
    Blog Entries
    18

    Default Re: the problems of psx model ripping

    Maybe take a look at this.

  5. #5
    Member wolfgar's Avatar
    Join Date
    Oct 2009
    Location
    the middle of the woods
    Posts
    89
    Thanks
    3
    Thanked 1 Time in 1 Post

    Default Re: the problems of psx model ripping

    the program mentioned their is a program to translate .tmd to a .lwo file . only usefull if all psx games actually used that format >.< but only off brand crappy ones ever do ( from what i heard ) but even then that only helps if they have a viewable file system ( haven't seen 1 yet even with being able to view protected system files and hidden files ) . the next closest thing along that path is useing a program to ectract certain files from the cd .bin but all of my rips come out as 3 files ( .cue , .img , and .ccd ) i've spent the last 2 weeks searching along that path , results ... almost none >.<
    Programming: the art that fights back

Similar Threads

  1. nextLine problems, any help appreciated
    By Schmitz14 in forum File I/O & Other I/O Streams
    Replies: 2
    Last Post: October 5th, 2009, 01:23 AM
  2. How to compile and run java program?
    By ebalari56 in forum What's Wrong With My Code?
    Replies: 4
    Last Post: September 27th, 2009, 09:33 PM
  3. Problems with recursion
    By KingLane in forum Algorithms & Recursion
    Replies: 4
    Last Post: September 20th, 2009, 11:02 PM
  4. If you have any .NET problems
    By antony_t in forum The Cafe
    Replies: 1
    Last Post: August 26th, 2009, 10:49 AM
  5. Problems in setting classpath
    By missyati in forum Java Theory & Questions
    Replies: 3
    Last Post: June 30th, 2009, 12:43 AM