Page 2 of 2
Re: [PS3] Mahjong Dream C Club
Posted: Sun Jan 27, 2013 7:29 am
by finale00
howfie wrote:ok, i'll look into it, but it takes longer for me to look into these things now.
Just assign it as homework to your students or something

Prof did that to us all the time he called it "extra credit" even though it was clearly for his own hobbies.
Re: [PS3] Mahjong Dream C Club
Posted: Sun Mar 03, 2013 11:24 am
by mikulover39
Looking back at the files I have found the problem its very simple actually lol. At the end of the list where the positions of the file are instead of ending with ff ff ff ff ff ff ff ff it ends with ff ff ff ff. Right now I am just manually getting the data from the archive but this should be easy to fix in the exe.
Re: [PS3] Mahjong Dream C Club
Posted: Sun Mar 03, 2013 6:30 pm
by howfie
indeed, the format of the old cat file expected two 0xFFFFFFFF 0xFFFFFFFF in a row.
Code: Select all
// read header
std::deque<std::pair<size_t, size_t>> header;
for(;;) {
uint32 p01 = BE_read_uint32(ifile); if(ifile.fail()) return error("Read failure.");
uint32 p02 = BE_read_uint32(ifile); if(ifile.fail()) return error("Read failure.");
if(p01 == 0xFFFFFFFF && p02 == 0xFFFFFFFF) break;
if(header.size() > 1000) return error("Unexpected number of CAT sections.");
header.push_back(std::pair<size_t, size_t>(p01, p02));
}
i'm still quite busy at the moment working on some other things, but if this is that easy i'll see what i can do soon.
Re: [PS3] Mahjong Dream C Club
Posted: Mon Mar 04, 2013 2:26 am
by Darko
Is this compatible with Dream C Club Complete Epyon??
Re: [PS3] Mahjong Dream C Club
Posted: Mon Mar 04, 2013 5:17 pm
by mikulover39
No it currently isn't the cat files have changed a bit
No rush lol and this time the texture files don't use the extension xpr, they use gtf but no change in the structure
The only other thing really is that only the tmd files for the characters are the same. Field and items and other things have changed but there not important lol
Re: [PS3] Mahjong Dream C Club
Posted: Thu Mar 31, 2016 3:04 pm
by MarieRose1301
Can I use the ripper with Dream C Club ZERO X360? Because that's the only game I've managed to find :/