[SOLVED] Names corresponding to CRC - Ratchet & Clank: Full Frontal Assault (PS Vita)

Programming related discussions related to game research
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

[SOLVED] Names corresponding to CRC - Ratchet & Clank: Full Frontal Assault (PS Vita)

Post by AlphaTwentyThree »

Hey fellows!

I'd like to retrieve some original file names using *.lua files, more precisely the music streams. Their file names are an 8-byte hex.

Here's an excerpt of a lua with some names:

Code: Select all

TrackC = SoundSpecs.mus_QF_jungleRuins_PRE_main_lp
TrackD = SoundSpecs.mus_QF_florana_pre_enemy_lp
TrackZ = SoundSpecs.mus_QF_florana_pre_defendBase


These are the available file names:

Code: Select all

ef82637a
30998cd9
328a893e
3d68acd0
40ff6953
72d2bdca
81f1f608
8a909096
a5617bd1
a694ed00
b9b2816a
04194960
096fc14a
0e612503
14fb5fe2
28c1fb92
32b4be5a
3392bf25
3392bf26
3392bf27
3562cefd
38d8740a
4747bfc6
47783495
4b63548f
526fef07
5530ecf4
55579c84
5d1066ce
5fbc197a
60dd4b25
61c584cc
636e856c
6bcc079b
6ec9b5ea
70ef2393
783872d7
7a5dece4
81c7d65b
8f17bf2e
908c84cb
a6bf88d4
a6ed8879
b4054c84
b72ce723
b7b3aae1
bdd31e55
bf0d1653
c422b3c1
d43eeebd
d531c53e
db63691c
dba1789a
dd6fe8a5
0bbe2f40
4fcfe7ff
843003b0
890bda45
a0f8e460
bae794d2
cbc8bd8b
d9d7bd35
da6d7cf0
e69973a7
f2c4ffa5
f8eb35cb
f9a096d0
e281f9ca
e4dc8232
e4ed8231
eb8cc445
f09995c8
f3e486b9
fc05fb86
ff2f98fc
ff4077fb
ff97c97a
ffa8c979

I've marked the ones that are somewhat special (two streams inside file).

Can somebody tell me if they somehow correspond?
Thanks!
Last edited by AlphaTwentyThree on Sat Jun 11, 2022 10:28 am, edited 1 time in total.
Ekey
Posts: 1383
Joined: Sat Aug 09, 2014 2:34 pm

Re: Names corresponding to CRC - Ratchet & Clank: Full Frontal Assault (PS Vita)

Post by Ekey »

If the game uses Audiokinetic Wwise, then the default algorithm for hashes is FNV1a.
AlphaTwentyThree
Posts: 909
Joined: Sat Aug 09, 2014 11:21 am

Re: Names corresponding to CRC - Ratchet & Clank: Full Frontal Assault (PS Vita)

Post by AlphaTwentyThree »

Thanks for your answer. I've found the names in bonus files for each archive, thanks!